ShellLayoutBuilder typedef

ShellLayoutBuilder = Widget Function(Widget child, List shellRoutes, bool moduleTabsEnabled)

Signature per il builder custom della shell (layout principale dell'app).

child è il contenuto della pagina corrente (outlet del router). shellRoutes è la lista di route visibili nel menu. moduleTabsEnabled indica se le tab dei moduli sono abilitate.

Implementation

typedef ShellLayoutBuilder = Widget Function(
  Widget child,
  List<dynamic> shellRoutes,
  bool moduleTabsEnabled,
);