summaryrefslogtreecommitdiffstats
path: root/examples/combo_box/README.md
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-07-26 22:45:56 +0200
committerLibravatar GitHub <noreply@github.com>2023-07-26 22:45:56 +0200
commita0a3cf7eb71ca9a934a60144b92c555cf7efe69a (patch)
tree3657e6311e60e3fdbf530f1117be7e42d2cf6b16 /examples/combo_box/README.md
parent4cf1b4fd1c8f45fe50ff254decd91f0d589f70ff (diff)
parent559ebdbb3a0b90ff28f361f5466f17178b6d8137 (diff)
downloadiced-a0a3cf7eb71ca9a934a60144b92c555cf7efe69a.tar.gz
iced-a0a3cf7eb71ca9a934a60144b92c555cf7efe69a.tar.bz2
iced-a0a3cf7eb71ca9a934a60144b92c555cf7efe69a.zip
Merge pull request #1954 from jhff/widget/combobox
Add `ComboBox` widget
Diffstat (limited to '')
-rw-r--r--examples/combo_box/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/combo_box/README.md b/examples/combo_box/README.md
new file mode 100644
index 00000000..9cd224ad
--- /dev/null
+++ b/examples/combo_box/README.md
@@ -0,0 +1,18 @@
+## Combo-Box
+
+A dropdown list of searchable and selectable options.
+
+It displays and positions an overlay based on the window position of the widget.
+
+The __[`main`]__ file contains all the code of the example.
+
+<div align="center">
+ <img src="combobox.gif">
+</div>
+
+You can run it with `cargo run`:
+```
+cargo run --package combo_box
+```
+
+[`main`]: src/main.rs