toga
toga copied to clipboard
A Python native, OS native GUI toolkit.
_Originally posted by @rmartin16 in https://github.com/beeware/toga/issues/2249#issuecomment-1830617979_ ----- ``` I/python.stdout: =================================== FAILURES =================================== I/python.stdout: _________________________________ test_scroll __________________________________ I/python.stdout: Traceback (most recent call last): I/python.stdout: File "/data/data/org.beeware.toga.testbed/files/chaquopy/AssetFinder/app/tests/widgets/test_detailedlist.py", line 107, in test_scroll I/python.stdout:...
Most desktop-managers have some sort of system tray where to keep icons for long-running programs and notifications. This doesn't seem to be supported in Toga at the moment.
### What is the problem or limitation you are having? Currently when creating a Toga application, the menu items are only in English with no way to change the language...
### What is the problem or limitation you are having? I was working on an app with a DetailedList and needed to rearrange some items. I added a few buttons...
**Is your feature request related to a problem? Please describe.** A frequent question on Discord is how to create tasks that run in the background and don't block the GUI....
### What is the problem or limitation you are having? Right now, screenreaders can use TextInput fine as a widget, however, they can't determine its purpose for the user. Example,...
### What is the problem or limitation you are having? Many platforms have support for both a Switch and a Checkbox widget; however, Toga doesn't currently expose this capability. ###...
When running CI, the testbed app sometimes raises the following failure on Android when running the `tests/widgets/test_detailedlist.py::test_refresh` test: ``` I/python.stdout: _________________________________ test_refresh _________________________________ I/python.stdout: Traceback (most recent call last): I/python.stdout:...
### Describe the bug When running CI, the testbed app sometimes fails coverage, reporting a single missing branch miss in the coverage of ScrollContainer on Cocoa: ``` Name Stmts Miss...
## Describe your changes in detail Adds a date input widget for the toga on the web. I'm looking for a bit of an understanding of how to contribute to...