NomoBottomBarThemeData constructor

const NomoBottomBarThemeData({
  1. Color foreground = Colors.black,
  2. Color background = Colors.white,
  3. Color selectedForeground = Colors.red,
  4. BorderRadius itemBorderRadius = const BorderRadius.all(Radius.circular(8)),
  5. BorderRadius borderRadius = BorderRadius.zero,
  6. double height = 56.0,
  7. double spacing = 4.0,
  8. double iconSize = 28.0,
  9. EdgeInsetsGeometry padding = const EdgeInsets.all(4),
  10. double elevation = 16.0,
  11. EdgeInsetsGeometry itemPadding = const EdgeInsets.symmetric(horizontal: 8),
})

Implementation

const NomoBottomBarThemeData({
  this.foreground = Colors.black,
  this.background = Colors.white,
  this.selectedForeground = Colors.red,
  this.itemBorderRadius = const BorderRadius.all(Radius.circular(8)),
  this.borderRadius = BorderRadius.zero,
  this.height = 56.0,
  this.spacing = 4.0,
  this.iconSize = 28.0,
  this.padding = const EdgeInsets.all(4),
  this.elevation = 16.0,
  this.itemPadding = const EdgeInsets.symmetric(horizontal: 8),
});