Hello- I have an app with multiple screens for a wizard-like behavior. Currently the app works just fine while editing and playing it. However, once I publish the app, the first time around navigation works fine, but when accessing again screen navigation stops working in certain screens.
OnSelect function for the first button that doesn't work is:
Set(
_newShoutoutStep,
_newShoutoutStep + 1
);
Patch(
collShoutout,
First(collShoutout),
{Division: {Value: _selectedDivision.Title}}
);
Navigate(
scrNewShoutoutContent,
ScreenTransition.Cover
)
Both the Set and Patch functions are working as I can validate the values in it, but the Navigate does not. I have tried adding an icon and label to test the Navigate and even that does not work.