SavePointsBottomsheet class
A modern, customizable bottom sheet with glassmorphism design.
This class provides a static method to display beautiful bottom sheets with:
- Glassmorphism effects with backdrop blur
- Drag handles and gestures
- Scrollable content support
- Loading states
- Custom animations
- Dark mode support
Example:
SavePointsBottomsheet.show(
context: context,
title: 'Options',
child: YourContentWidget(),
);
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
show<
T> ({required BuildContext context, String? title, Widget? child, IconData? icon, Color? iconColor, Color? backgroundColor, bool? isDismissible, bool? enableDrag, bool? showHandle, double? maxHeight, bool isScrollControlled = false, BottomsheetAnimationDirection? startAnimation, BottomsheetAnimationDirection? endAnimation, bool isLoading = false, ValueNotifier< bool> ? loadingNotifier, bool hideLikeCircle = false, ContentDesignStyle? designStyle, double? blur, ImageFilter? backdropFilter}) → Future<T?> - Shows a modern bottom sheet.