File size: 301 Bytes
2c3c408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from textual.app import App
from textual.widgets import Input


class InputApp(App):

    CSS = """
    Input {
       width: 20;
    }
    """

    def compose(self):
        yield Input("你123456789界", placeholder="Type something")


if __name__ == "__main__":
    app = InputApp()
    app.run()