CenterOrScroll constructor
const
CenterOrScroll({
- Key? key,
- bool wrapInSafeArea = true,
- EdgeInsets padding = EdgeInsets.zero,
- Axis scrollDirection = Axis.vertical,
- ScrollController? scrollController,
- required Widget child,
Implementation
const CenterOrScroll({
super.key,
this.wrapInSafeArea = true,
this.padding = EdgeInsets.zero,
this.scrollDirection = Axis.vertical,
this.scrollController,
required this.child,
});