Files
textual/sandbox/will/input.py
2022-09-04 11:02:24 +01:00

18 lines
224 B
Python

from textual.app import App
from textual.widgets import TextInput
class InputApp(App):
CSS = """
TextInput {
}
"""
def compose(self):
yield TextInput(initial="foo")
app = InputApp()