How to position BoxLayout to top of screen
问题 I have a ActionBar that is nested inside a BoxLayout widget. I'd like the ActionBar to appear at the very top of the screen. Currently, I'm only able to get it to appear at the very bottom. Here is a screenshot: Here is my main.py: from kivy.app import App from kivy.uix.boxlayout import BoxLayout class ShowActionBar(BoxLayout): pass class MyTestApp(App): pass if __name__ == "__main__": MyTestApp().run() And here is my .kv file: ShowActionBar: <ShowActionBar>: orientation: "vertical" BoxLayout