KitePage constructor
const
KitePage({
- required Widget child,
- double maxWidth = 1280,
- EdgeInsetsGeometry? padding,
- bool scrollable = true,
- Key? key,
Implementation
const KitePage({
required this.child,
this.maxWidth = 1280,
this.padding,
this.scrollable = true,
super.key,
}) : assert(maxWidth > 0, 'maxWidth must be greater than zero.');