NomoBottomBarThemeData constructor

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

Implementation

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