FUIPage constructor

const FUIPage({
  1. Key? key,
  2. required List<Widget> children,
  3. EdgeInsetsGeometry? padding,
  4. ScrollPhysics? physics,
  5. double bottomPadding = FUITokens.gap24,
})

Implementation

const FUIPage({
  super.key,
  required this.children,
  this.padding,
  this.physics,
  this.bottomPadding = FUITokens.gap24,
});