NomoBottomBarThemeData constructor

const NomoBottomBarThemeData(
  1. {dynamic foreground = Colors.black,
  2. dynamic background = Colors.white,
  3. dynamic selectedForeground = Colors.red,
  4. dynamic borderRadius = const BorderRadius.all(Radius.circular(8)),
  5. double height = 56.0,
  6. double spacing = 4.0,
  7. double iconSize = 28.0,
  8. dynamic padding = const EdgeInsets.all(4),
  9. dynamic 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),
});