mcastle
mcastle

Reputation: 2982

Kivy transition between screens without transitioning navbar

Is there a way to transition between screens in a Kivy app while excluding a top navigation bar from the transition? The purpose of this is to have a "next screen" button and a "back" button of a top navbar remain in a fixed position between screens.

Upvotes: 0

Views: 933

Answers (1)

brousch
brousch

Reputation: 1072

Put your navbar in something like a vertical boxlayout. Also put your screenmanager in it. Now the screen changes will only affect the screenmanager. I used something like this in a Kivy talk at PyOhio 2014. Code for slideshow app and Video of talk

Upvotes: 1

Related Questions