mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
22 lines
486 B
Python
22 lines
486 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Checkbox, Footer
|
|
|
|
|
|
class ScrollOffByOne(App):
|
|
"""Scroll to item 50."""
|
|
|
|
AUTO_FOCUS = None
|
|
|
|
def compose(self) -> ComposeResult:
|
|
for number in range(1, 100):
|
|
yield Checkbox(str(number), id=f"number-{number}")
|
|
yield Footer()
|
|
|
|
def on_ready(self) -> None:
|
|
self.query_one("#number-50").scroll_visible()
|
|
|
|
|
|
app = ScrollOffByOne()
|
|
if __name__ == "__main__":
|
|
app.run()
|