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
2 answers

Why my same kivymd app says app is not installed?

I am experimenting building app with buildozer, and yesterday, I built my app to apk, and it installed well. But today, I built same app except, I deleted Window.size in main.py code. And I installed app but then it says app not installed. Just…
Superjay
  • 447
  • 1
  • 7
  • 25
0
votes
2 answers

Showing the setup screen only on first launch in kivy

I am trying to make an app with kivy and kivymd but I can't figure out how I can make the setup screen show up only the first time. This is how the application is going to work: User launches the application after installation and is being shown the…
taha kalaee
  • 133
  • 5
0
votes
2 answers

Error while signing an kivy app for the play store

I made a release apk using buildozer android release command. Then I sign and zipalign my apk using following commands. genarate keystore file [before] - keytool -genkey -v -keystore myapp.keystore -alias myalias -keyalg RSA -keysize 2048 -validity…
0
votes
1 answer

Kivy android application with pytube doesn't function

I'm building a kivy android application but when i try to execute it on android it stops working and I get this: urllib.error.URLError:
0
votes
1 answer

How to go to second page in kivymd python

I have the first page with login and perform checking on the .py file with database (sqlite3). Now the problem is how do I go to another page after perform the checking. Here I use the sm.windowManager but it does not work and give me a blank page.…
Loke
  • 5
  • 2
0
votes
1 answer

How to save and load the data after rerunning the app on kivymd

how can I possibly save the item from the list I inputted before exiting the app then load it again when I open the app, coz I'm going to convert it into app then I realize since i'm making a grocery list app, the item must be save on the list even…
Zeej
  • 17
  • 5
0
votes
1 answer

User text not showing after trying to access it in MDTextField (KivyMD)

After creating a MDTextField in a MDDialog with KivyMD, I am trying to access the text entered by the user in the MDTextField and change a label's text to whatever was entered but to no avail. Here is my code below: # importing all the necessary…
0
votes
1 answer

File "kivy\properties.pyx", line 864, in kivy.properties.ObservableDict.__getattr__ AttributeError: 'super' object has no attribute '__getattr__'

I'm just learning, and I tried to run this simple code : ihave a problem , can we help me : this is my code for my apps: from kivy.core.window import Window from kivy.lang import Builder from kivy.uix.floatlayout import FloatLayout from…
0
votes
1 answer

Kivy pass variable to screen and change screen

Edit: i was trying to make a minmal app as John Anderson from the first answer told me to do to reproduce my problem but i wasn't able but i got another error how can i make my self.manager to work along on the screens? 'NoneType' object has no…
Rodrigo
  • 39
  • 1
  • 8
0
votes
1 answer

How to create a selection list in KivyMD

I am trying to create a menu/selection to choose certain values from a list using KivyMD. I want it to look similar to how these lists look on IOS apps. I've included an image from the 'Fitbit' app for reference of what I'm trying to replicate. the…
0
votes
1 answer

use of ScreenManager in Kivy file and python file

I'm new to Kivy, I'm working on a tracking app for vehicle repair and I've got a list of appointments and I'm trying to go to a different screen when you press an item on the list and I I have no clue on why it isn't working for me as it says that…
0
votes
1 answer

Python, KivyMD - Getting data from Checkboxes, Text input, there must be a better way

enter image description hereNew to programming (about 6 months) Trying to create a heavy equipment inspection form for my company. Everything is working but I am suspicious that there may be an easier way. I have a form with multiple check box…
Steve
  • 1
  • 2
0
votes
0 answers

bash: ./configure: Permission denied how can I fix this

I m trying to use buildozer in termux everything is fine but it was asking to install zlib So I found this discussion :- https://github.com/termux/termux-packages/issues/2671 But when I ran command ./configure --prefix=$PREFIX And I got this…
Priyanshu Kumar
  • 172
  • 1
  • 2
  • 13
0
votes
1 answer

Dynamic screens in kivymd

I've been working with kivymd for awhile and I wanna create a screen in which it's contents will change depending on content that is clicked for example let's say I have a home screen with products and when each product is clicked another screen…
0
votes
1 answer

Kivy packet err0r

Code from the documentation KivyMD: from kivy.lang import Builder from kivy.uix.floatlayout import FloatLayout from kivymd.app import MDApp from kivymd.uix.tab import MDTabsBase KV = ''' BoxLayout: orientation: "vertical" MDToolbar: …
Mirai
  • 115
  • 2
  • 16