utils update
This commit is contained in:
parent
8095795221
commit
108bddd6d0
|
|
@ -6,7 +6,8 @@ class ActionSheetData {
|
||||||
final String? dismissTitle;
|
final String? dismissTitle;
|
||||||
final VoidCallback? onConfirmed;
|
final VoidCallback? onConfirmed;
|
||||||
final VoidCallback? onDismissed;
|
final VoidCallback? onDismissed;
|
||||||
final String title;
|
final String? title;
|
||||||
|
final bool hasPadding;
|
||||||
final IconData? titleIcon;
|
final IconData? titleIcon;
|
||||||
final Color? titleColor;
|
final Color? titleColor;
|
||||||
final bool hasDismissButton;
|
final bool hasDismissButton;
|
||||||
|
|
@ -16,10 +17,11 @@ class ActionSheetData {
|
||||||
|
|
||||||
const ActionSheetData({
|
const ActionSheetData({
|
||||||
required this.content,
|
required this.content,
|
||||||
required this.title,
|
this.title,
|
||||||
this.confrimTitle,
|
this.confrimTitle,
|
||||||
this.onConfirmed,
|
this.onConfirmed,
|
||||||
this.titleColor,
|
this.titleColor,
|
||||||
|
this.hasPadding = true,
|
||||||
this.hasDismissButton = true,
|
this.hasDismissButton = true,
|
||||||
this.hasConfirmButton = true,
|
this.hasConfirmButton = true,
|
||||||
this.titleIcon,
|
this.titleIcon,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue