Skip to content

Instantly share code, notes, and snippets.

@amalgamatedclyde
Created January 31, 2014 17:27
Show Gist options
  • Save amalgamatedclyde/8737465 to your computer and use it in GitHub Desktop.
Save amalgamatedclyde/8737465 to your computer and use it in GitHub Desktop.
multiple kv
def build(self):
l= Builder.load_file('newui.kv')
m= Builder.load_file('studentlist3.kv')
carousel.add_widget(l)
carousel.add_widget(m)
self.m = m
self.l = l
self.rootlayout = rootlayout
self.carousel = carousel
#print 'ids are', self.l.ids
return rootlayout
if __name__ == '__main__':
MainApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment