FDialogContentStyle constructor
FDialogContentStyle({
- required TextStyle titleTextStyle,
- required TextStyle bodyTextStyle,
- EdgeInsetsGeometry padding = const .only(left: 16, right: 16, top: 18, bottom: 18),
- EdgeInsetsGeometry titlePadding = const .symmetric(horizontal: 8),
- EdgeInsetsGeometry bodyPadding = const .symmetric(horizontal: 8),
- double imageSpacing = 9,
- double titleSpacing = 9,
- double contentSpacing = 20,
- double actionSpacing = 10,
- bool expandActions = true,
Creates a FDialogContentStyle.
Implementation
FDialogContentStyle({
required this.titleTextStyle,
required this.bodyTextStyle,
this.padding = const .only(left: 16, right: 16, top: 18, bottom: 18),
this.titlePadding = const .symmetric(horizontal: 8),
this.bodyPadding = const .symmetric(horizontal: 8),
this.imageSpacing = 9,
this.titleSpacing = 9,
this.contentSpacing = 20,
this.actionSpacing = 10,
this.expandActions = true,
});