Skip to content

Instantly share code, notes, and snippets.

@tshirtman
Created November 14, 2012 15:51
Show Gist options
  • Save tshirtman/4072912 to your computer and use it in GitHub Desktop.
Save tshirtman/4072912 to your computer and use it in GitHub Desktop.
label creation failing on android
from kivy.uix.label import Label
from kivy.app import App
class MyApp(App):
def build(self):
#Label()
return Label(text='test')
if __name__ == '__main__':
MyApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment