Questions tagged [kivymd]

KivyMD is a collection of Material Design compliant widgets. Use with the [kivy] and [python] tags

is a library that adds Material Design compliant widgets for use with .

KivyMD source code is stored at GitHub. This library is a fork of the KivyMD project the author of which stopped supporting this project. Currently KivyMD is in beta status.

KivyMD has documentation pages on ReadTheDocs.

KivyMD

1734 questions
0
votes
0 answers

In Python 3.8 - How can I search my widget name from RecycleView

How can I do the search function depends on what I type in the textfield? If the text I type in the textfield is equal to the RecycleView data['name'], how to make that only widget show? KV = ''' : AsyncImage: source:…
user14269596
0
votes
2 answers

Getting TypeError when installing KivyMD

Getting this error when installing KivyMD via pip install https://github.com/kivymd/KivyMD/archive/master.zip Collecting https://github.com/kivymd/KivyMD/archive/master.zip Downloading https://github.com/kivymd/KivyMD/archive/master.zip \…
0
votes
1 answer

Add settings config file to exe when packaging kivy app

I am making an app that uses a .ini config file to store settings values. With PyInstaller, I am trying to create a standalone -exe file that includes the config file (to be honest, I am not sure if this is possible), or at least stores it somewhere…
0
votes
2 answers

kivyMD APK crashes on start up (android)

I help me figure out what the problem may be. Hi, I am having issues running my Kivy MD app on an android device. After compiling my app into an apk I use a USB stick to transfer the file onto an android phone. The app is successfully installed…
user14700313
0
votes
0 answers

KivyMD - Dropdown Menu: AttributeError: 'super' object has no attribute '__getattr__' in

I am stuck with this problem for quite a few days now. And also, now, I have a slight idea about this kind of error and that it has something to do with the python file trying to access an element (Dropdown menu) using its id in the kivy string. But…
Sew
  • 11
  • 3
0
votes
1 answer

Interaction and Deletion among widgets on Python + KivyMD and Code Optimization

I am currently building an app that serves as a travel expenses manager. I have a system in which the user writes the desired amount of the expense on an MDTextField, such expense will be recorded in an MDList and the total amount of requested…
Diego Gc
  • 175
  • 2
  • 15
0
votes
1 answer

Kivy no longer allowing Resizing of Window?

Yesterday everything was fine but today Kivy wont allow me to resize the window. My app runs but after the window appears i can't seem to make it larger. The window remains the same size it was when i ran app. kivy.config.Config.set('graphics',…
0
votes
1 answer

Kivymd Custom List Dialog. can't insert changeable list in mddialog

I'm trying to add a changeable list in a custom dialog in kivyMD. the problem is when I call self.adding() , the list appears in my FloatLayout, not in the dialog. I know that's because I called "Content" in my FloatLayout. I did this because I…
taha kalaee
  • 133
  • 5
0
votes
1 answer

how can I connect classes in KivyMD, python

I try to make an app as a questionary, I dont know how to figure this error out. AttributeError: 'CustomItem' object has no attribute 'delete_item' I know what does it mean, that CustomItem is another class so it hasnt that def, but when i copied…
0
votes
1 answer

kivy remove parent and add child new widget

guys how to separate child to parent? kivy.uix.widget.WidgetException: Cannot add it already has a parent . I can separate mdcard object and…
0
votes
1 answer

How do I get the input from MDTextField?

Testing an app out and I can't find a way to get the input from the text field. I want to be able to get the input of the username and password and use it plug in SQL to get data from a certain account. From what I understand, I can press the submit…
0
votes
1 answer

How to display image in kivymd without text?

I am developing simple GUI program using kivymd. I tried to display image with Image List but ImageList occurs some problems so I need another widget that displays image. I searched on kivymd but I found only Image List. Is there some good widget…
Superjay
  • 447
  • 1
  • 7
  • 25
0
votes
1 answer

Kivy: MDExpansion panel isn't shown

I need to create a screen as a history of your results form test, which was in another screens. I want use an MDExpansionPanel, but when I wrote a code nothing is shown. Screen is empty I don't know why, could anybody please help me? In…
0
votes
1 answer

Why Kivymd MDSwiper is occuring unknown class error?

I am new to kivymd and I was testing with MDSwiper. But when I run my code, It occurs some errors. I think I'm making some stupid mistakes but i don't know how to solve this problem. my code: from kivymd.app import MDApp from kivy.lang.builder…
Superjay
  • 447
  • 1
  • 7
  • 25
0
votes
1 answer

How to refer to another class method in kivy

I'm trying to make an app. On button click on the bottom right of the screen there appears a dialog window(popup). On "Done" click the popup window closes (close_dialog method), and a new List Item is expected to appear. Unfortunately the error…
faritowich
  • 31
  • 5
1 2 3
99
100