textual icon indicating copy to clipboard operation
textual copied to clipboard

The lean application framework for Python. Build sophisticated user interfaces with a simple Python API. Run your apps in the terminal and a web browser.

Results 462 textual issues
Sort by recently updated
recently updated
newest added

I think it may be a good idea to add a callback to the animator, which is invoke when the animation is finished. The use case I have in mind...

CSS animations have a `delay` parameter which inserts a delay before an animation. We should extend the animator to support this delay, and expose it in CSS.

We should implement more pseudo selectors in Textual. It will be really nice in combination with queries, for instance to remove the last child in a list: ```python self.query(".item:last-child").remove() ```...

Textual is currently in active development. I will try to keep the sample functional, but I make no guarantee anything will run right now. Unless this is a blatant bug,...

To be added by @willmcgugan Can we please add an invisible tree style + a short stem option? 1. Invisible border for tree. like we set guide_style = no_border and...

Messages and Events use a parallel but different mechanism. The distinction between the two is largely academic, and I suspect it will be a source of confusion. We should unify...

We need to flesh out the bindings system to include focus awareness.

We need an API to manage a stack of Screens

This is my first time using Github to report something, thus sorry if I have done something wrong... I tried various examples with classic and ipython terminal. Checked the log,...

It seems screen height suffers from some sort of off-by-one bug. This testcase: ``` from textual.app import App from textual.widgets import Footer, Placeholder class MainApp(App): async def on_mount(self) -> None:...