mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
17 lines
283 B
Python
17 lines
283 B
Python
"""
|
|
Simulates a screenshot of the Textual devtools
|
|
"""
|
|
|
|
from textual_dev.renderables import DevConsoleHeader
|
|
|
|
from textual.app import App
|
|
from textual.widgets import Static
|
|
|
|
|
|
class ConsoleApp(App):
|
|
def compose(self):
|
|
yield Static(DevConsoleHeader())
|
|
|
|
|
|
app = ConsoleApp()
|