Arcilla
May 23, 2018 - 13:22
The following reduced program
import ui
nav_view = ui.NavigationView(ui.View(background_color='red'))
nav_view.present('sheet')
nav_view.push_view(ui.View(background_color='white'))
nav_view.push_view(ui.View(background_color='blue'))
nav_view.push_view(ui.View(background_color='orange'))
nav_view.pop_view()
nav_view.pop_view()
nav_view.pop_view()
ends with a blue area, not with the expected red one. I wonder what goes on here.
In my full program, it pops (only) twice.
Can anyone help, please?