FullScreenDialogOverlayHandler class
Full-screen variant of the dialog overlay handler.
Similar to DialogOverlayHandler but specifically designed for full-screen modal presentations. Removes padding and adjusts styling to fill the entire screen while maintaining proper overlay management and animation behavior.
Features:
- Full-screen modal presentation
- Edge-to-edge content display
- Maintained overlay architecture
- Proper animation handling
- Theme inheritance
Example:
const FullScreenDialogOverlayHandler().show<bool>(
context: context,
alignment: Alignment.center,
builder: (context) => FullScreenForm(),
);
- Inheritance
-
- Object
- OverlayHandler
- FullScreenDialogOverlayHandler
Constructors
- FullScreenDialogOverlayHandler.new()
-
Creates a FullScreenDialogOverlayHandler.
const
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
-
show<
T> ({required BuildContext context, required AlignmentGeometry alignment, required WidgetBuilder builder, Offset? position, AlignmentGeometry? anchorAlignment, PopoverConstraint widthConstraint = PopoverConstraint.flexible, PopoverConstraint heightConstraint = PopoverConstraint.flexible, Key? key, bool rootOverlay = true, bool modal = true, bool barrierDismissable = true, Clip clipBehavior = Clip.none, Object? regionGroupId, Offset? offset, AlignmentGeometry? transitionAlignment, EdgeInsetsGeometry? margin, bool follow = true, bool consumeOutsideTaps = true, ValueChanged< PopoverOverlayWidgetState> ? onTickFollow, bool allowInvertHorizontal = true, bool allowInvertVertical = true, bool dismissBackdropFocus = true, Duration? showDuration, Duration? dismissDuration, OverlayBarrier? overlayBarrier, LayerLink? layerLink}) → OverlayCompleter<T> -
override
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
isDialogOverlay(
BuildContext context) → bool - Checks if the current context is within a dialog overlay.