TitleNavigationBarStyle constructor

const TitleNavigationBarStyle({
  1. TextStyle? style,
  2. EdgeInsets padding = const EdgeInsets.all(20.0),
  3. double elevation = 3.0,
  4. Color background = Colors.white,
  5. Color activeColor = Colors.blue,
  6. double spaceBetween = 20.0,
  7. Color deactiveColor = Colors.black26,
})

Implementation

const TitleNavigationBarStyle({
  this.style,
  this.padding = const EdgeInsets.all(20.0),
  this.elevation = 3.0,
  this.background = Colors.white,
  this.activeColor = Colors.blue,
  this.spaceBetween = 20.0,
  this.deactiveColor = Colors.black26,
});