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

how to solve "The back button(Esc button) is not working properly" issue

the back button on 1st load does not work on singin_screen but it works on option_screen(on 1st load) and after that if choose any option from options and go to that option's screen and and then come back to option screen the back does not work, It…
0
votes
0 answers

Kivy - Screen Management from Class

I'm using KivyMD framework and I'm trying to manage screens from classes but I don't know how to do it. NavigationDrawer should be manageable in every screens. I want to make, 5 different screens: Home Screen for welcome message. Football…
Yavuz
  • 1
  • 1
0
votes
1 answer

How can I make a floatlayout have a scrollview in kivymd?

I am working on a project with python, and I need my main page to be scrollable, but it doesn't work... I've tried like literally everything. Here's my code: main.py from kivymd.app import MDApp from kivy.lang import Builder from kivymd.uix.menu…
0
votes
1 answer

How to get rid of Kivymd Hot reload Viewer Error

I am testing Kivymd Hot reload. It works well, but when I type pos_hint: {""} , then Kivy gives me an error. Code(This code is from Kivymd docs): from kivy.lang import Builder from kivymd.app import MDApp KV = ''' #:import KivyLexer…
Superjay
  • 447
  • 1
  • 7
  • 25
0
votes
1 answer

Kivy MapMarkerPopUp not displaying in KV design file

So I am trying to open the map on kivy and display a map marker on the correct lat and long but when I run the program the mapmarker doesnt show up, its not throwing any errors, and I cant find any documentation to help me. I'm newer to kivy, thanks…
scorpio
  • 61
  • 1
  • 8
0
votes
1 answer

How can I pass information from a text field when I click a button with the builder?

I´m new using kivymd and trying to create a simple app, just for fun. I´m trying to create a register screen, but when I try to send the info to the console it returns me an error (kivy.properties.ObservableDict.getattr AttributeError: 'super'…
0
votes
1 answer

KivyMD Tab name containing icons and text

I'm using KivyMD and I'm trying to create a tab name that contains both icons and text in it - but it won't display properly on my screen. I'm trying to get a tab to have the text: [A] Tab1 (where [A] is the icon). If the icon is called on its own,…
0
votes
1 answer

Is there an easy way to show Wordpress posts in kivy/python app?

I am trying to make an app with kivy, but am wondering if I can connect it to a Wordpress database, I want to show the wp posts within the kivy app, is there an easy way to do so?
0
votes
1 answer

How to Switch from a login screen (without the navigationdrawer layout) to a screen with a navigationdrawer layout python/kivy/kivymd

I am relatively new to app development and I am attempting to create a login screen that, if successfully logged into, takes you to a "dashboard" screen that has the layout of NavigationDrawer. I attempted to leverage what I found on Git hub here:…
0
votes
1 answer

How do I remove this Kivy Spacing problem

I don't understand how to get the spacing right. I need the first object to start at the top and I need the words to not be bunched together. ScreenManager: id: screen_manager size_hint_y: 80 Screen: name: 'Home' …
0
votes
1 answer

KivyMD: Adding list widget inside python code, problem with "on_release" - property

Trying to add some buttons with a for-loop to a container that is already defined in the .kv file: The code looks like this: a_list = ["Spam", "Eggs"] for i in range(len(a_list)): self.ids.container.add_widget( ThreeLineListItem(id =…
Sixtenson
  • 87
  • 8
0
votes
0 answers

In Python 3.8, How to bind RecycleView Data

Can I ask how can I make each card bind switch to different or specific screen? Is it using if else function to do it? def load(self): with open('images.json') as f: image_data = f.read() images =…
user14269596
0
votes
1 answer

Card showing in the background on animation (KivyMD) (How to get rid of it)

Okay, I want to animate the cards in my app. Because it gets to cluttered to have all the fields and everything in one card. I would like to avoid changing screen, and just animate the card itself. The app is a "register user" - kind of thing. But…
Sixtenson
  • 87
  • 8
0
votes
1 answer

How to change hint_text's font name in KivyMD Textfield?

I was programming with Kivymd, and I have a problem. My KV code: MDTextField: hint_text: "Hint Text" font_name: "Fontname.ttf" When I change font_name of MDTextfield, font of field changes. But, hint text's font does not changes. It's font…
Superjay
  • 447
  • 1
  • 7
  • 25
0
votes
1 answer

How to change other kv string's property in kivymd?

I was using kivymd MDList, but I have a problem. My Code: from kivymd.app import MDApp from kivy.lang.builder import Builder example_list = ['a', 'b', 'c'] KV = """ ScrollView: MDList: id: List """ ListItem =…
Superjay
  • 447
  • 1
  • 7
  • 25
1 2 3
99
100