FuiNavigationContent constructor

const FuiNavigationContent({
  1. Key? key,
  2. required Widget child,
  3. bool left = true,
  4. bool top = true,
  5. bool right = true,
  6. bool bottom = true,
  7. EdgeInsets minimum = EdgeInsets.zero,
  8. bool maintainBottomViewPadding = false,
})

Implementation

const FuiNavigationContent({
  super.key,
  required this.child,
  this.left = true,
  this.top = true,
  this.right = true,
  this.bottom = true,
  this.minimum = EdgeInsets.zero,
  this.maintainBottomViewPadding = false,
});