FullScreen constructor

const FullScreen({
  1. Key? key,
  2. double bottomPadding = 0.0,
  3. required Widget child,
  4. required Color systemNavigationBarColor,
})

Implementation

const FullScreen({
  super.key,
  this.bottomPadding = 0.0,
  required this.child,
  required this.systemNavigationBarColor,
});