AdaptiveScaffold constructor

const AdaptiveScaffold({
  1. Key? key,
  2. required Widget child,
  3. bool? resizeToAvoidBottomInset,
  4. CupertinoNavigationBar? cupertinoNavigationBar,
  5. Color? backgroundColor,
  6. Scaffold? specialScaffold,
})

Implementation

const AdaptiveScaffold({
  Key? key,
  required this.child,
  this.resizeToAvoidBottomInset,
  this.cupertinoNavigationBar,
  this.backgroundColor,
  this.specialScaffold,
}) : super(key: key);