FpjWidgetPage constructor

const FpjWidgetPage({
  1. Key? key,
  2. required Widget page,
  3. Function? onPush,
  4. Function? onVisible,
  5. TextStyle? defaultTextStyle,
  6. Function? onActive,
  7. Function? onInactive,
  8. Brightness statusBarBrightness = Brightness.light,
  9. Color? bgColor,
  10. String? title,
  11. Color? titleColor,
  12. Function? onInvisible,
  13. Color? iconColor,
  14. bool? resizeToAvoidBottomInset,
  15. List<Widget>? actionChilds,
  16. Function? onPop,
  17. bool? autoClearFocus = true,
})

Implementation

const FpjWidgetPage({
  super.key,
  required this.page,
  this.onPush,
  this.onVisible,
  this.defaultTextStyle,
  this.onActive,
  this.onInactive,
  this.statusBarBrightness = Brightness.light,
  this.bgColor,
  this.title,
  this.titleColor,
  this.onInvisible,
  this.iconColor,
  this.resizeToAvoidBottomInset,
  this.actionChilds,
  this.onPop,
  this.autoClearFocus = true,
});