Editor shell
Structural shell for the editor screen — macOS-style title bar, top toolbar (16:9 / Crop / Annotate / Trim + Share / Export), and three slot regions for the canvas, inspector, and timeline.
States
| State | Story |
|---|---|
| Empty (no clip) | editor-shell-empty |
| Clip loaded | editor-shell-clip-loaded |
| Toolbar states | editor-toolbar-states |
| Export disabled | editor-shell-export-disabled |
API
#![allow(unused)] fn main() { use ui_storybook::components::editor::{EditorShell, EditorShellView}; use ui_storybook::fixtures::editor::sample_editor_shell; view! { <EditorShell view=sample_editor_shell(/* has_clip_loaded */ true) /> // optional children: canvas, inspector, timeline } }