SliderAppBar constructor

const SliderAppBar({
  1. double appBarHeight = 90,
  2. Widget title = const Text('AppBar', style: TextStyle(fontWeight: FontWeight.w500, fontSize: 20)),
  3. bool isTitleCenter = true,
  4. Color appBarColor = const Color(0xffffffff),
  5. EdgeInsets? appBarPadding = const EdgeInsets.only(top: 60),
  6. Widget? trailing,
  7. Color drawerIconColor = const Color(0xffab4242),
  8. Widget? drawerIcon,
  9. double drawerIconSize = 27,
})

Implementation

const SliderAppBar({
  this.appBarHeight = 90,
  this.title = const Text('AppBar',
      style: TextStyle(fontWeight: FontWeight.w500, fontSize: 20)),
  this.isTitleCenter = true,
  this.appBarColor = const Color(0xffffffff),
  this.appBarPadding = const EdgeInsets.only(top: 60),
  this.trailing,
  this.drawerIconColor = const Color(0xffab4242),
  this.drawerIcon,
  this.drawerIconSize = 27,
});