We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ba0d9 commit 6e4f77bCopy full SHA for 6e4f77b
src/textual/__main__.py
@@ -1,5 +1,18 @@
1
+from rich import print
2
+from rich.panel import Panel
3
+
4
from textual.demo.demo_app import DemoApp
5
6
if __name__ == "__main__":
7
app = DemoApp()
8
app.run()
9
+ print(
10
+ Panel.fit(
11
+ "[b magenta]Hope you liked the demo![/]\n\n"
12
+ "Please consider sponsoring me if you get value from my work.\n\n"
13
+ "Even the price of a ☕ can brighten my day!\n\n"
14
+ "https://github.com/sponsors/willmcgugan",
15
+ border_style="red",
16
+ title="Consider sponsoring",
17
+ )
18
0 commit comments