resolveCLNavMode function
Larghezza → modalità navigazione.
Implementation
CLNavMode resolveCLNavMode(double width, CLShellConfig config) {
if (width >= config.desktopBreakpoint) return CLNavMode.sidebar;
if (width >= config.tabletBreakpoint) return CLNavMode.rail;
return CLNavMode.bottomBar;
}