mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
32 lines
635 B
Python
32 lines
635 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Static
|
|
|
|
QUOTE = "Could not find you in Seattle and no terminal is in operation at your classified address."
|
|
|
|
|
|
class CenterApp(App):
|
|
"""How to center things."""
|
|
|
|
CSS = """
|
|
Screen {
|
|
align: center middle;
|
|
}
|
|
|
|
#hello {
|
|
background: blue 50%;
|
|
border: wide white;
|
|
width: 40;
|
|
height: 9;
|
|
text-align: center;
|
|
content-align: center middle;
|
|
}
|
|
"""
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield Static(QUOTE, id="hello")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = CenterApp()
|
|
app.run()
|