mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 12:11:07 +02:00
* implement widgets * add basic documentation * Add examples * try version without packaging Co-authored-by: Talley Lambert <talley.lambert@gmail.com>
12 lines
233 B
Python
12 lines
233 B
Python
from qtpy.QtWidgets import QApplication
|
|
|
|
from superqt import QSearchableComboBox
|
|
|
|
app = QApplication([])
|
|
|
|
slider = QSearchableComboBox()
|
|
slider.addItems(["foo", "bar", "baz", "foobar", "foobaz", "barbaz"])
|
|
slider.show()
|
|
|
|
app.exec_()
|