Screen constructor

Screen({
  1. Key? key,
  2. Widget? appBar,
  3. Widget? body,
  4. Widget? floatingButton,
  5. ScrollController? controllerToHideAppBar,
  6. double offsetToHideAppBar = 80.0,
})

Scaffold core, but fixes some problems the Scaffold has with the ScrollNavigation.

Implementation

Screen({
  Key? key,
  this.appBar,
  this.body,
  this.floatingButton,
  this.controllerToHideAppBar,
  this.offsetToHideAppBar = 80.0,
}) : super(key: key);