CustomBottomFloatBar constructor

const CustomBottomFloatBar({
  1. required Widget child,
  2. required bool? show,
  3. Key? key,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. bool? ghost,
})

BottomFloatBar 底部浮动栏组件

Implementation

const CustomBottomFloatBar({
  required this.child,
  required this.show,
  super.key,
  this.margin,
  this.padding,
  this.ghost,
});