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

We have a fairly naive approach to the focus order in Textual. Textual will go through widgets in the order they are defined within `children`. What should probably occur is...

- Check test suite against 3.11 latest beta - Check sandbox demos known to run - Fix or ticket any minor issues

Hello, I am unable to get the TUI to automatically refresh itself after I make a aiohttp request. The only way I can get it to refresh is if I...

We need a config file to be read by Textual that contains settings, key bindings etc. YAML, or maybe TOML. It should be flexible enough that third party packages should...

Reading config files and merging them. - Things are kept in dictionary form for now as that's how they get merged. - We could throw the data into an immutable...

I used simple code: ```python from textual.app import App from textual.widgets import Placeholder class SimpleApp(App): async def on_mount(self) -> None: await self.view.dock(Placeholder(), edge="left", size=40) await self.view.dock(Placeholder(), Placeholder(), edge="top") SimpleApp.run(log="textual.log") ```...

Hi! I failed at creating a widget with complex content using textual. What would help me is an example of how one do something like this: ![window](https://user-images.githubusercontent.com/76137/175279689-22a5a28b-0e2e-49a4-bda1-3baa05cf195c.png) My try at...

When text has `color: auto [percentage]` it will be displayed with the contrasting colour of its background As a result we can have widgets that have `color: auto;` in their...

It can be useful to let users customize the style of the text in the footer