Frame constructor

const Frame({
  1. Key? key,
  2. required bool beveled,
  3. required String appName,
  4. required List<Nav> navItems,
  5. required List<Nav> bottomNavItems,
  6. required Widget child,
  7. bool hideBar(
    1. String route
    )?,
  8. bool routeTitle = true,
  9. FloatingNav? floatingItem,
})

Implementation

const Frame({
  super.key,
  required this.beveled,
  required this.appName,
  required this.navItems,
  required this.bottomNavItems,
  required this.child,
  this.hideBar,
  this.routeTitle = true,
  this.floatingItem
});