Files
textual/tests/snapshot_tests/snapshot_apps/input_suggestions.py
Rodrigo Girão Serrão bfdaf02f66 Add snapshot test.
2023-05-18 14:26:32 +01:00

23 lines
455 B
Python

from textual.app import App, ComposeResult
from textual.widgets import Input
fruits = ["apple", "pear", "mango", "peach", "strawberry", "blueberry", "banana"]
class FruitsApp(App[None]):
CSS = """
Input > .input--suggestion {
color: red;
text-style: italic;
}
"""
def compose(self) -> ComposeResult:
yield Input("straw", suggestions=fruits)
if __name__ == "__main__":
app = FruitsApp()
app.run()