FxScrollableForm constructor

FxScrollableForm({
  1. Key? key,
  2. required List<Widget> children,
  3. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.onDrag,
  4. BoxConstraints? constraints,
  5. EdgeInsets? padding,
  6. double? spacing,
  7. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  8. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.stretch,
  9. Widget? footer,
  10. Widget? header,
  11. FxSafeAreaInsets safeArea = const FxSafeAreaInsets(),
})

Implementation

FxScrollableForm({
  super.key,
  required this.children,
  this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.onDrag,
  this.constraints,
  this.padding,
  this.spacing,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.crossAxisAlignment = CrossAxisAlignment.stretch,
  this.footer,
  this.header,
  this.safeArea = const FxSafeAreaInsets(),
});