Created
January 31, 2014 17:27
-
-
Save amalgamatedclyde/8737465 to your computer and use it in GitHub Desktop.
multiple kv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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