ScreenWrapper constructor
const
ScreenWrapper({
- Key? key,
- required Widget child,
- EdgeInsets? padding,
- MainAxisAlignment? mainAxisAlignment,
- CrossAxisAlignment? crossAxisAlignment,
- PreferredSizeWidget? appBar,
- bool scroll = true,
Implementation
const ScreenWrapper({
Key? key,
required this.child,
this.padding,
this.mainAxisAlignment,
this.crossAxisAlignment,
this.appBar,
this.scroll = true,
}) : super(key: key);