makepad_example_ui_zoo/tab_commandtextinput.rs
1use crate::{
2 makepad_widgets::*,
3};
4
5live_design!{
6 use link::theme::*;
7 use link::shaders::*;
8 use link::widgets::*;
9 use crate::layout_templates::*;
10
11 pub DemoCommandTextInput = <UIZooTabLayout_B> {
12 desc = {
13 <Markdown> { body: dep("crate://self/resources/commandtextinput.md") }
14 }
15 demos = {
16 <H4> { text: "Standard" }
17 <CommandTextInput> {}
18 }
19 }
20}