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