DialogBuilder class

Builds a dialog with dismissal handled as with default Flutter dialogs.

builder -> Builder method that returns the dialog.

GlobalKey should be set as the key of the widget to enable dismissal of dialog when any area in the barrier is tapped.

alignment -> Position of dialog along the vertical axis.

Defaults to DialogAlignment.center

debugLabel -> Debug label for GlobalKey accessed from builder

dismissible -> Whether dialog can be dismissed by tapping any area in the barrier.

crossAxisAlignment -> Position of dialog along the horizontal axis.

Inheritance

Constructors

DialogBuilder({Key? key, required Widget builder(GlobalKey<State<StatefulWidget>>), DialogAlignment alignment = DialogAlignment.center, String? debugLabel, bool dismissible = true, CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center})
const

Properties

alignment DialogAlignment
Position of dialog along the vertical axis.
final
builder Widget Function(GlobalKey<State<StatefulWidget>>)
Builder method that returns the dialog.
final
crossAxisAlignment CrossAxisAlignment
Position of dialog along the horizontal axis.
final
debugLabel String?
Debug label for GlobalKey accessed from builder
final
dismissible bool
Whether dialog can be dismissed by tapping any area in the barrier.
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() State<DialogBuilder>
Creates the mutable state for this widget at a given location in the tree.
override
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited