Is there a way to make it so when my ModalView/ Popup widget is active but none of the buttons behind it will be triggered? Below is an example of a ModalView/popup widget that will notify the user they entered something incorrect. I want the user to be able to click anywhere and the ModalView will disappear. The problem is
Tag: kivy
Kivy RecycleView of Labels without clipping text or huge spaces between
How can I make a RecycleView in a Kivy python app display all its labels without truncating the text contents of the label nor adding huge spaces in-between the labels? I’m trying to display a very large amount of text in a Kivy (5+ MB) without causing it to lock-up. I think objectively the best solution here is to use
Kivy: Labels not being displayed in python file with add_widget()
I’m quite new to Kivy and have been repeatedly having issues with displaying things. I am building a basic app to track students, assign them to school houses (like in Harry Potter) and display them. I created a “for” loop to add users to labels in a stack layout which would then display them in a scroll view, but for
Kivy Label is not showing up
So I am a beginner in kivy. I have written a programm that reads sentences from a list and displays them in a Boxlayout as buttons. The Boxlayout is in a Floatlayout, so I can control where the sentences are located. If I click one of the sentences, it splits into buttons for each word. So far so good. Now
KivyMD widgets displaying at the bottom of page in MDBoxLayout
KivyMD widgets are displayed at the bottom when using MDBoxLayout. I remember two MDTextField widgets and one MDRaisedButton, but they are located at the bottom. When using Kivy without KivyMD, there is no such problem. Here is my code: Result: Result of run this code I tried to replace MDBoxLayout to BoxLayout and MDScreen to Screen, but this not helped.
why buttons not appear into widget in kivy python
i need to create a simple widget into a function then call the function from the inti function any help for me? why my Buttons doesn’t appear Answer The Buttons are not appearing because you never add them to the App display. Just replace: with:
Kivy: AttributeError: ‘…’ object has no attribute ‘…’, but it has
I have this TaskTemplate with some Buttons, TexInput, etc. I will put just a piece of code for an easy understanding. If I use TaskTemplate as root class it works, I can change the state of the CheckBox with that parameter. If I add TaskTemplate here: I get this error which has no end: Answer Your update_state is just an
kivy: Is it possible to have the same Tabbed Panel on different screens?
im wondering if it is possible to have a Tabbed Panel permanently even though im switching between screens? Ive tried having the TabbedPanel outside the mainscreen, on a different class and so on. So far when i switch to the FirstScreen the TabbedPanel disapears. Python: kv: Answer Rather than adding the TabbedTest to each Screen, just make the TabbedTest and
Kivy Scrollview with FloatLayout Is Positioning itself at the bottom of the screen
In summary, the program takes a bunch of list data and populates a row to describe a task with some actions attached to it. After much work I got scrollview working with Floatlayout somewhat. The issue is that the list of rows of labels are stuck at the bottom part of the screen as in the screenshot. When you run
I can’t switch screen in kivy
I followed a tutorial on youtube so I could learn how to use kivy, but when I try to switch screen it doesn’t work, I write my code the exact same way the guy does it, but for some reason nothing happens when I click the button “Se dine produkter”. I have written where I need help in the .kv