CustomAppBar constructor
CustomAppBar({})
Implementation
CustomAppBar({
super.key,
this.title = '',
this.height = 40.0,
this.titleWidget,
this.elevation = 5,
this.scrollPosition = -1,
this.isShowIconBack = true,
this.actions,
this.onPressed,
this.bottomHeight = 1,
required this.theme,
PreferredSizeWidget? bottom,
}) : bottom = bottom ??
PreferredSize(
preferredSize: Size.fromHeight(bottomHeight),
child: Container(height: bottomHeight, color: Colors.transparent),
);