FxScrollableForm constructor
FxScrollableForm({
- Key? key,
- required List<
Widget> children, - ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.onDrag,
- BoxConstraints? constraints,
- EdgeInsets? padding,
- double? spacing,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.stretch,
- Widget? header,
- 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(),
});