MongolListTileTheme constructor

const MongolListTileTheme({
  1. Key? key,
  2. bool dense = false,
  3. ShapeBorder? shape,
  4. ListTileStyle style = ListTileStyle.list,
  5. Color? selectedColor,
  6. Color? iconColor,
  7. Color? textColor,
  8. EdgeInsetsGeometry? contentPadding,
  9. Color? tileColor,
  10. Color? selectedTileColor,
  11. bool? enableFeedback,
  12. double? verticalTitleGap,
  13. double? minHorizontalPadding,
  14. double? minLeadingHeight,
  15. required Widget child,
})

Creates a list tile theme that controls the color and style parameters for MongolListTiles.

Implementation

const MongolListTileTheme({
  Key? key,
  this.dense = false,
  this.shape,
  this.style = ListTileStyle.list,
  this.selectedColor,
  this.iconColor,
  this.textColor,
  this.contentPadding,
  this.tileColor,
  this.selectedTileColor,
  this.enableFeedback,
  this.verticalTitleGap,
  this.minHorizontalPadding,
  this.minLeadingHeight,
  required Widget child,
}) : super(key: key, child: child);