XBottomAppBarWrap function

dynamic XBottomAppBarWrap({
  1. dynamic child,
  2. dynamic color,
  3. dynamic height,
  4. dynamic boxShadow,
  5. 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,
  );
}