forked from tchigher/sliding-sheet
-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
bottom sheet is closing fine by backdrop and also with button onTap => Get.back() but not with back gesture or back button
showSlidingBottomSheet(
context,
builder: (context) {
return SlidingSheetDialog(
color: Theme.of(context).colorScheme.surface,
elevation: 0,
duration: const Duration(milliseconds: 500),
cornerRadius: 15,
cornerRadiusOnFullscreen: 0,
snapSpec: const SnapSpec(
snap: true,
snappings: [0.6, 0.7, 1.0],
positioning: SnapPositioning.relativeToAvailableSpace,
),
avoidStatusBar: true,
builder: (context, state) {
return const Material(
type: MaterialType.transparency,
child: UpdateNameBottomSheet()
);
},
);
}
);
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working