CellCupertinoPageScaffold constructor

const CellCupertinoPageScaffold({
  1. Key? key,
  2. ValueCell<ObstructingPreferredSizeWidget?>? navigationBar,
  3. ValueCell<Color?>? backgroundColor,
  4. ValueCell<bool> resizeToAvoidBottomInset = const ValueCell.value(true),
  5. required ValueCell<Widget> child,
})

Implementation

const CellCupertinoPageScaffold({
  super.key,
  this.navigationBar,
  this.backgroundColor,
  this.resizeToAvoidBottomInset = const ValueCell.value(true),
  required this.child,
});