You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add useRootNavigator parameter (optional) to set useRootNavigator of showCupertinoModalPopup (Default true) and useRootNavigator of showModalBottomSheet (Default false)
showAdaptiveActionSheet(
context: context,
title:constText('Title'),
useRootNavigator:true,
actions:<BottomSheetAction>[
BottomSheetAction(title:constText('Item 1'), onPressed: (context) {}),
BottomSheetAction(title:constText('Item 2'), onPressed: (context) {}),
BottomSheetAction(title:constText('Item 3'), onPressed: (context) {}),
],
cancelAction:CancelAction(title:constText('Cancel')),// onPressed parameter is optional by default will dismiss the ActionSheet
);
Wrap the content of showMaterialBottomSheet with a SafeArea