StackRouterScaffold constructor

const StackRouterScaffold({
  1. required Widget child,
  2. StackRouterAppBar? appBar,
  3. Color? color,
  4. double? height,
  5. double? width,
  6. Alignment? alignment,
  7. bool extendBodyBehindAppBar = false,
  8. dynamic key,
})

Implementation

const StackRouterScaffold({
  required this.child,
  this.appBar,
  this.color,
  this.height,
  this.width,
  this.alignment,
  this.extendBodyBehindAppBar = false,
  key,
}) : super(key: key);