Skip to content

Releases: Daniel-Ioannou/flutter_adaptive_action_sheet

v1.0.7

16 Nov 20:48
Compare
Choose a tag to compare

In this version:

  • Add optional textStyle parameter for each action.
    showAdaptiveActionSheet(
       context: context,
       actions: <BottomSheetAction>[
          BottomSheetAction(
             title: 'Item 1', 
             onPressed: () {}, 
             textStyle: const TextStyle(
                fontSize: 25,
                color: Colors.blueAccent,
             ),
          ),
          BottomSheetAction(title: 'Item 2', onPressed: () {}),
       ],
       cancelAction: CancelAction(// onPressed parameter is optional by default will dismiss the ActionSheet
          title: 'Cancel', 
          textStyle: const TextStyle(
             fontSize: 25,
             color: Colors.blueAccent,
          ),
       ),
    );

v1.0.6

29 Oct 17:21
50e42eb
Compare
Choose a tag to compare

In this version:

  • Add optional title parameter and will be displayed as title in the action sheet.
    showAdaptiveActionSheet(
       context: context,
       title: const Text('Title'),
       actions: <BottomSheetAction>[
          BottomSheetAction(title: 'Item 1', onPressed: () {}),
          BottomSheetAction(title: 'Item 2', onPressed: () {}),
       ],
       cancelAction: CancelAction(title: 'Cancel'),// onPressed parameter is optional by default will dismiss the ActionSheet
    );

v1.0.5

29 Oct 16:59
9427364
Compare
Choose a tag to compare

In this version:

  • Add option to customize colors via bottomSheetColor and barrierColor.

v1.0.4

29 Oct 16:57
d41fbf5
Compare
Choose a tag to compare

In this version:

  • Add scroll at material bottom sheet
  • Fix overflow at android action sheet

v1.0.3

05 Jun 10:14
Compare
Choose a tag to compare

In this version:

  • Add required annotation for all the required parameters

v1.0.2

25 May 13:54
7f64184
Compare
Choose a tag to compare

In this version:

  • Add options to customize cancel action.
  • Make cancel action optional.

v1.0.1

25 May 13:48
Compare
Choose a tag to compare

In this version:

  • Update documentation.

v1.0.0

19 May 16:33
Compare
Choose a tag to compare

In this version:

  • Initial developers preview release.