KivyMD icon indicating copy to clipboard operation
KivyMD copied to clipboard

KivyMD is a collection of Material Design compliant widgets for use with Kivy, a framework for cross-platform, touch-enabled graphical applications. https://youtube.com/c/KivyMD https://twitter.com/Ki...

Results 178 KivyMD issues
Sort by recently updated
recently updated
newest added

After second click on the Button the MDDropdownMenu Position isn't working (position="bottom"). ```python from kivymd.app import MDApp from kivy.lang import Builder from kivymd.uix.menu import MDDropdownMenu from kivy.utils import hex_colormap from...

Status: Needs analysis

https://github.com/kivymd/KivyMD/blob/82cde89a4b055f70b983b791592d8554c404615a/kivymd/uix/datatables/datatables.py#L1492 ### Description of the Bug The provided example in the markup contains row_data with values such as ("alert", [255 / 256, 165 / 256, 0, 1], "No Signal") which...

Type: Bug

The default box_color for the `MDSmartTile` 'information box' is (0, 0, 0, 0.5) to make it semi-transparent. Consider: ``` : MDSmartTile: overlap: True source: root.tile size_hint_y: 1 on_press: app.on_one(self, self.source)...

Type: Bug

### Description of the Feature MDDataTable can display great tables to the user (text, nubmers, icons..). However, the user can not chang those values directly. To get some value changes,...

Type: Enhancement

So it looks like it is not possible to apply column sorting to the first column of a table ``` from kivy.metrics import dp from kivymd.app import MDApp from kivymd.uix.datatables...

Code_link: https://github.com/ramayanbindas/ClassConnect You could try to run the ClassConnect.py file. What I am doing? -> While I am trying to develop the application, at first I have developing it in...

### Description of the Bug Hot reload is not working on other python files. It watches `main.py` by default ig. But with `home_page.py` file which is imported in `main.py` is...

Type: Enhancement

Referencing sample code from https://kivymd.readthedocs.io/en/latest/components/navigationdrawer/#standard-content-for-the-navigation-bar , when using MDNavigationDrawerItem with MDNavigationDrawerMenu, the item highlight is dislocated slightly above consistently. ```py from kivy.lang import Builder from kivymd.app import MDApp KV =...

### Versions * OS: Windows/Android * Python: 3.10 * Kivy: 2.2.0 * KivyMD: 1.2.0dev0 (master) When you set the text in the field with the parameter `helper_text_mode: "on_error"`, `helper_text` is...

Status: Incomplete

### Description of the Bug When using nested Layouts the data table component has a weird looking layout and is displayed over other components. ### Code and Logs main.py: ```python...