AntdDialog class

@t 对话框 @g 反馈 @o 97 @d 用于重要信息的告知或操作的反馈,并附带少量的选项供用户进行操作。 @u 需要用户处理事务,又不希望跳转页面以致打断工作流程时,可以使用 Dialog 在当前页面正中打开一个浮层,承载相应的操作。

Inheritance

Constructors

AntdDialog.new({Key? key, AntdDialogStyle? style, AntdStyleBuilder<AntdDialogStyle, AntdDialog>? styleBuilder, VoidCallback? onClosed, VoidCallback? onOpened, VoidCallback? onMaskTap, AntdMaskOpacity? opacity, bool? dismissOnMaskTap = true, bool? showMask = true, List<AntdDialogAction>? actions, bool? dismissOnAction = true, AntdMaskBuilder<AntdDialogState>? builder, Widget? closeIcon, Widget? header, Widget? title, AntdDialogType type = AntdDialogType.normal, AntdDialogAnimation? animation})
const

Properties

actions List<AntdDialogAction>?
面板选项列表
finalinherited
animation AntdDialogAnimation?
弹出层动画
final
avoidKeyboard bool
当底部弹出式 避免键盘遮挡
finalinherited
builder AntdMaskBuilder<AntdDialogState>?
内容
finalinherited
closeIcon Widget?
自定义关闭按钮图标
finalinherited
dismissOnAction bool?
点击选项后是否关闭
finalinherited
dismissOnMaskTap bool?
点击背景板是否关闭,mask为true才有效
finalinherited
hashCode int
The hash code for this object.
no setterinherited
顶部区域
finalinherited
hole AntdMaskHole?
镂空的区域
finalinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
layerType String
no setteroverride
onClosed VoidCallback?
完全关闭后触发
finalinherited
onMaskTap VoidCallback?
点击蒙层自身触发,mask为true才有效
finalinherited
onOpened VoidCallback?
完全展示后触发
finalinherited
opacity AntdMaskOpacity?
透明度,mask为true才有效
finalinherited
position AntdPosition
弹出位置
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
showMask bool?
是否显示背景蒙版
finalinherited
style AntdDialogStyle?
样式
finalinherited
styleBuilder AntdStyleBuilder<AntdDialogStyle, AntdDialog>?
动态样式
finalinherited
title Widget?
标题
finalinherited
type AntdDialogType
dialog的类型,一般用作全局主题的动态样式
final

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() State<StatefulWidget>
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
getDefaultStyle(BuildContext context, AntdTheme theme, AntdMapToken token) AntdDialogStyle
override
getFinalStyle(BuildContext context, AntdDialogStyle style, AntdMapToken token) AntdDialogStyle
inherited
getInputStyle(BuildContext context) AntdDialogStyle?
inherited
getStyle(BuildContext context) AntdDialogStyle
inherited
getStyleBuilder(BuildContext context) AntdStyleBuilder<AntdDialogStyle, AntdDialog>?
inherited
getThemeStyle(BuildContext context, AntdTheme theme) AntdStyleBuilder<AntdDialogStyle, AntdDialog>?
override
getWidget(BuildContext context) AntdDialog
override
margeStyle(AntdDialogStyle defaultStyle, AntdDialogStyle? style) AntdDialogStyle
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
open<T>() Future<T?>
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, int wrapWidth = 65}) 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

Static Methods

alert<T>(Widget content, {Key? key, Widget? header, Widget? title, AntdActionStyle? style, Widget alert = const Text("我知道了"), AntdActionOnTap? onConfirm, AntdDialog? dialog}) Future<T?>
confirm<T>(Widget content, {Key? key, Widget? header, Widget? title, AntdActionStyle? confirmStyle, Widget confirm = const Text("确认"), AntdActionOnTap? onConfirm, AntdActionStyle? cancelStyle, Widget cancel = const Text("取消"), AntdActionOnTap? onCancel, AntdDialog? dialog}) Future<T?>
show<T>({Key? key, Widget? header, Widget? title, required Widget content, List<AntdDialogAction>? actions, AntdDialog? dialog}) Future<T?>