Skip to content

Commit

Permalink
Adding simple example, used in docs
Browse files Browse the repository at this point in the history
Signed-off-by: Vedant <[email protected]>
  • Loading branch information
vrnimje committed Sep 25, 2023
1 parent 36d3ae3 commit 66ceb54
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions examples/simple.qf
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Border Vertical{
Text("Hello World")
int z
Dropdown {
[ "C", "C++", "Python", "Javascript", "Java", "Rust", "R", ],
z
}
separator
Horizontal {
str x
Button {
"List out files & directories in root/",
System("ls ~/"),
x
}
Button {
"Exit",
"Exit"
}
}
}

0 comments on commit 66ceb54

Please sign in to comment.