Enum ScaffoldFlyoutMode
- Namespace
- Nalu
- Assembly
- Nalu.Maui.Scaffold.dll
Behavior of a scaffold drawer side (FlyoutStartModeProperty / FlyoutEndModeProperty). A drawer exists only when its content resolves non-null AND its mode resolves to something other than Disabled — both sides default to Disabled, so enabling a drawer is always explicit.
public enum ScaffoldFlyoutMode
Fields
Auto = 0The drawer is available at stack roots only: it behaves as Flyout while the current navigation stack has no pushed pages and as Disabled otherwise (mirroring Auto).
Disabled = 1No drawer on this side, even when content is configured (the default).
Flyout = 2An overlay drawer sliding in from the edge, available on every page.