AppTitleBar constructor
const
AppTitleBar({
- Key? key,
- double height = titleBarHeight,
- String title = "",
- Color titleColor = Colors.black,
- double titleFontSize = titleBarTitleFontSize,
- bool backBtnEnable = true,
- Color backgroundColor = Colors.transparent,
- Color titleBarColor = Colors.transparent,
- Color bottomDividerColor = Colors.transparent,
- Widget? rightWidget,
- Widget? leftWidget,
- Widget? centerWidget,
- bool? safeArea = true,
Implementation
const AppTitleBar(
{Key? key,
this.height = titleBarHeight,
this.title = "",
this.titleColor = Colors.black,
this.titleFontSize = titleBarTitleFontSize,
this.backBtnEnable = true,
this.backgroundColor = Colors.transparent,
this.titleBarColor = Colors.transparent,
this.bottomDividerColor = Colors.transparent,
this.rightWidget,
this.leftWidget,
this.centerWidget,
this.safeArea = true})
: super(key: key);