BasicDialogs class

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

customizeDialog<T>(BuildContext context, {double? width, double? height, bool barrierDismissible = true, Color? color, BoxShape shape = BoxShape.rectangle, BorderRadiusGeometry? borderRadius, EdgeInsets? padding, required String title, VoidCallback? onPressedToTitle, String? customizeOkText, String? customizeCancelText, VoidCallback? onOkPressed, VoidCallback? onCancelPressed, required Widget content, bool showFooter = true}) Future<T?>
defaultDialog<T>(BuildContext context, {double? width, double? height, bool barrierDismissible = true, Color? color, BoxShape shape = BoxShape.rectangle, BorderRadiusGeometry? borderRadius, required Widget content}) Future<T?>
optionDialog<T>(BuildContext context, {required BasicDialogType type, required VoidCallback onClickButtonRight, VoidCallback? onClickButtonLeft, String? title, Widget? customTitle, String? content, String? buttonCancel, String? buttonText, Widget? customContent, double? width}) Future<T?>