Flutter Adaptive Action Sheet Versions Save

A action bottom sheet that adapts to the platform (Android/iOS).

v1.0.6

3 years ago

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

3 years ago

In this version:

  • Add option to customize colors via bottomSheetColor and barrierColor.

v1.0.4

3 years ago

In this version:

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

v1.0.3

3 years ago

In this version:

  • Add required annotation for all the required parameters

v1.0.2

4 years ago

In this version:

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

v1.0.1

4 years ago

In this version:

  • Update documentation.

v1.0.0

4 years ago

In this version:

  • Initial developers preview release.