FDialogContentStyle constructor

FDialogContentStyle({
  1. required TextStyle titleTextStyle,
  2. required TextStyle bodyTextStyle,
  3. EdgeInsetsGeometry padding = const .only(left: 16, right: 16, top: 18, bottom: 18),
  4. EdgeInsetsGeometry titlePadding = const .symmetric(horizontal: 8),
  5. EdgeInsetsGeometry bodyPadding = const .symmetric(horizontal: 8),
  6. double imageSpacing = 9,
  7. double titleSpacing = 9,
  8. double contentSpacing = 20,
  9. double actionSpacing = 10,
  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,
});