We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe I'm doing something wrong, but I can't get buttons to behave as expected. They always overlay the menu pane.
class MainApp(App): nav = NavigationDrawer() def build(self): for k in SCREENS.keys(): try: Builder.load_file('screens/%s.kv' % k) except IOError: print "[ERROR ] [APP ] Could not load screens/%s.kv" % k pass side_panel = BoxLayout(orientation='vertical') side_panel.add_widget(Label(text='Panel label')) side_panel.add_widget(Button(text='A button')) side_panel.add_widget(Button(text='Another button')) self.nav.add_widget(side_panel, 100) self.nav.add_widget(SCREENS['login'].get('screen')(name=SCREENS['login'].get('name'))) return self.nav
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe I'm doing something wrong, but I can't get buttons to behave as expected. They always overlay the menu pane.
The text was updated successfully, but these errors were encountered: