NeoPageShell constructor

const NeoPageShell({
  1. Key? key,
  2. required Widget child,
  3. Widget? background,
  4. double maxWidth = NeoBreakpoints.pageMaxWidth,
  5. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 28),
  6. AlignmentGeometry alignment = Alignment.topCenter,
})

Implementation

const NeoPageShell({
  super.key,
  required this.child,
  this.background,
  this.maxWidth = NeoBreakpoints.pageMaxWidth,
  this.padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 28),
  this.alignment = Alignment.topCenter,
});