Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
✨ Example for Textualize/textual#4109
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed Feb 2, 2024
1 parent 2a641ad commit 62c9524
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions text_area_cursor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""https://github.com/Textualize/textual/issues/4109"""

from textual.app import App, ComposeResult
from textual.widgets import Input, TextArea

class TextAreaCursorApp(App[None]):

def compose(self) -> ComposeResult:
yield Input()
yield TextArea()

if __name__ == "__main__":
TextAreaCursorApp().run()

### text_area_cursor.py ends here

0 comments on commit 62c9524

Please sign in to comment.