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'm wondering if we should have a `auto` value for the color rule, which selects white or black, whichever has better contrast. This could also work in conjunction with optional...

Application code: ```python from textual.app import App, ComposeResult from textual.widgets import Static class JustABox(App): def compose(self) -> ComposeResult: yield Static("Hello, World!", id="box") if __name__ == '__main__': app = JustABox(css_path="just_a_box.css", watch_css=True)...

Simple change to allow using a different style for the `Footer` widget.

The Button widget should have a visual indicator that it was clicked. Material buttons do this. The reasoning is that if an action doesn't immediately update the UI, the user...

We should use the time_machine library to run integration tests involving animation or anything time sensitive. This will allow us to write deterministic tests. There is a test of animation...

When running on my personal laptop, devtools slows a Textual application down drastically. When I close the devtools, I get the following error (which I have never seen on the...

We can tweak the `sandbox/basic.css` to reproduce the bug: - change `overflow-y: auto;` to `overflow: auto;` for the _Tweet_ selector - change `width: 100%;` to `width: 130%;` for the _TweetBody_...

bug

I've written a tool starting from `code_viewer.py` and I'm running into an issue that it becomes unresponsive to mouse clicks (and scrolls, IIRC) after several hours. It appears this issue...

I've been reading the source code (since there's not much documentation) and haven't found any ways to move the cursor around, or even really show the cursor. For learning Textual,...

### Discussed in https://github.com/Textualize/textual/discussions/299 Originally posted by **jeffwright13** February 20, 2022 I have an application that renders rich Text in a ScrollView object. This works great for displaying text. But...