Add Tool Strip (#11756)
Release Notes: - N/A --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
This commit is contained in:
parent
335636c42e
commit
1ab247756a
6 changed files with 97 additions and 1 deletions
|
@ -38,6 +38,7 @@ pub enum ComponentStory {
|
|||
Text,
|
||||
TitleBar,
|
||||
ToggleButton,
|
||||
ToolStrip,
|
||||
ViewportUnits,
|
||||
}
|
||||
|
||||
|
@ -73,6 +74,7 @@ impl ComponentStory {
|
|||
Self::TabBar => cx.new_view(|_| ui::TabBarStory).into(),
|
||||
Self::TitleBar => cx.new_view(|_| ui::TitleBarStory).into(),
|
||||
Self::ToggleButton => cx.new_view(|_| ui::ToggleButtonStory).into(),
|
||||
Self::ToolStrip => cx.new_view(|_| ui::ToolStripStory).into(),
|
||||
Self::ViewportUnits => cx.new_view(|_| crate::stories::ViewportUnitsStory).into(),
|
||||
Self::Picker => PickerStory::new(cx).into(),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue