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

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())