We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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() ); }, ); } );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bottom sheet is closing fine by backdrop and also with button onTap => Get.back() but not with back gesture or back button
The text was updated successfully, but these errors were encountered: