EndDrawer
EndDrawer is the end-side counterpart to StartDrawer.
Control the end edge
Section titled “Control the end edge”EndDrawer(ToolsPane()) .Open(tools_open) .OnOpenChanged([tools_open](bool open) { tools_open = open; })The application owns the open value. The component emits DrawerEvents::OpenChanged after gestures, outside presses, or other drawer interactions request a transition. The active DrawerStyle controls modal and persistent presentation.
Preserve content semantics
Section titled “Preserve content semantics”EndDrawer is a structural wrapper and preserves the semantic order and meaning of its content instead of publishing a separate control role.
EndDrawer(View content).Open(bool)andOpen(State<bool>).OnOpenChanged(handler).
See DrawerLayout and StartDrawer.

