Answer the question
In order to leave comments, you need to log in
Kivy python not rendering any widget?
Good afternoon, I'm trying to run Kivy on linux Mint. The code is the simplest:
from kivy.app import App
from kivy.uix.button import Button
class MyFirstProgramApp(App):
def duild(self):
return Button(text = "Hello world!")
if __name__ == '__main__':
MyFirstProgramApp().run()
Answer the question
In order to leave comments, you need to log in
class MyFirstProgramApp(App):
def duild(self):
return Button(text = "Hello world!")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question