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

- Implements a "center" layout. - Fixes an issues with scrollbars. If the mouse was captured when a scrollbar was hidden due to resizing the window, it was impossible to...

This PR adds an `auto_refresh` property to `DOMNode` (and thus `Widget`) to implement the common case of setting an interval timer on `refresh()`. The `auto_refresh` property can be set to...

### Discussed in https://github.com/Textualize/textual/discussions/658 Originally posted by **davep** August 7, 2022 I felt this was more of a question than an issue to raise to start with. Something I've noticed...

Hi all, being all new to Textual, but very excited to try out the new [Theengs Explorer](https://github.com/theengs/explorer) I'm only ever getting constant loops of ``` Task exception was never retrieved...

For the special(ish) case of wanting to horizontally and vertically center something, I think we should implement a `"center"` layout, which would vertically center it's child. What should we do...

We need to fill the gap created when both horizontal and vertical scrollbars are visible. This should probably be the same color as the scrollbar track, or possibly a slightly...

CSS syntax errors produce somewhat cryptic errors. We should try and improve this. In particular we should try to produce a helpful error for missing semi-colons, which will be a...

Implements a `remove()` method to remove a widget from the DOM.

We need an event which is sent to the App (and maybe to children) when the DOM is ready. In the case of the App, it should be after "compose"...

We need a way to "unmount" a widget. There is a "mount" method on `App`, so I'm thinking there should be an equivalent "unmount" method. We probably also want a...