Hi there,
I've created an app with multiple screens. Each screen has a menu that can be opened via a component. The menu is created via the solution as mentioned in Components - Screen Navigation .
Clicking on the component opens the menu. Adding the same component to multiple screens means that every component gets a different name. The menu's visible property for screen 8 is set to:
If(Q08MenuFooter.MenuGlobal = "Menu" , true, false)
The point is that the variable that is being updated for screen 8 applies to all screens. So the menu appears on every screen. As a result, the user must first switch it off again.
Is it possible to update or reset the variable that is created / set in a component when opening a screen?