ActionBar constructor
const
ActionBar({
- Key? key,
- double height = 46,
- bool isVisibleActionBar = true,
- double? edgesWidgetWidth,
- Color backgroundColor = Colors.white,
- bool isShowDivider = false,
- List<
Widget> ? leadingActions, - List<
Widget> ? actions, - Widget? content,
- ActionClickHandle? actionClick,
- dynamic extra,
- bool isFloatContent = false,
- double rightPadding = 0,
- SystemUiOverlayStyle systemUiOverlayStyle = const SystemUiOverlayStyle(statusBarColor: Colors.transparent, statusBarIconBrightness: Brightness.dark, statusBarBrightness: Brightness.light),
Implementation
const ActionBar({
Key? key,
this.height = 46,
this.isVisibleActionBar = true,
this.edgesWidgetWidth,
this.backgroundColor = Colors.white,
this.isShowDivider = false,
this.leadingActions,
this.actions,
this.content,
this.actionClick,
this.extra,
this.isFloatContent = false,
this.rightPadding = 0,
this.systemUiOverlayStyle = const SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
statusBarIconBrightness: Brightness.dark,
statusBarBrightness: Brightness.light,
),
}) : super(key: key);