Code:```python listbox = Listbox(["entry1", "entry2", "entry3"], title=f"{Style.bold

Code:
listbox = Listbox(["entry1", "entry2", "entry3"],
                title=f"{Style.bold}This is a test title :){Style.reset}",
                multi_select=True  # When this is True show() will return a list
)
print(listbox.show())
Preview:
unknown.png
Was this page helpful?