XBottomAppBarWrap function
dynamic
XBottomAppBarWrap({
- dynamic child,
- dynamic color,
- dynamic height,
- dynamic boxShadow,
- dynamic heightAuto,
Implementation
XBottomAppBarWrap({child, color, height, boxShadow, heightAuto}) {
return Container(
height: heightAuto ? null : height,
decoration: BoxDecoration(
color: color ?? Colors.white,
border: Border(
top: BorderSide(
color: themeColor.ffDEDFDE!,
width: 1.w,
),
bottom: BorderSide.none,
)),
child: child,
);
}