DanUIScreenWrapper constructor

const DanUIScreenWrapper({
  1. Key? key,
  2. required Widget child,
  3. Widget? backgroundChild,
  4. EdgeInsetsGeometry childPadding = EdgeInsets.zero,
  5. required Widget button,
  6. EdgeInsetsGeometry buttonPadding = EdgeInsets.zero,
  7. Color? backgroundColor = Colors.white,
  8. Widget? floatingActionButton,
  9. RefreshCallback? onRefresh,
  10. PreferredSizeWidget? appBar,
})

Implementation

const DanUIScreenWrapper({
  super.key,
  required this.child,
  this.backgroundChild,
  this.childPadding = EdgeInsets.zero,
  required this.button,
  this.buttonPadding = EdgeInsets.zero,
  this.backgroundColor = Colors.white,
  this.floatingActionButton,
  this.onRefresh,
  this.appBar,
});