Reputation: 2982
I'm trying to implement a menu using Kivy's NavigationDrawer, within a NavigationDrawer SidePanel. However, all examples and code I've seen have the menu on the left side of the screen. How can I place the SidePanel on the right side of the screen instead of the left side of the screen?
Upvotes: 1
Views: 1508
Reputation: 29458
You can't right now, but it wouldn't be very hard to change it. You can read the code of NavigationDrawer to see how it works and what parameters you'd need to change.
There's a pull request on the github repository that implements this, but as I remember it had some small bugs. You can look at its code to see what you'd need to change, or use it directly.
Upvotes: 1