Hi @spinneroo ,
Could you please share a bit more about your issue?
Do you mean that the ThankYou screen could not show up well?
Based on the issue that you mentioned, I think this issue is related to the RequestHide() formula you typed within the OnSuccess property of the NewNominationForm.
When you submit your form successfully, the OnSuccess Event would be fired, and the RequestHide() function would be executed. Even though, the Navigate(ThankYouScreen, ScreenTransition.Fade) formula has been called, the RequestHide() function would force to close/hide the Edit form app.
As an fixed solution, please consider take a try with the following workaround:
Set the OnVisible property of the ThankYou screen to following:
Set(IsStart, true)
Add a Timer control in your ThankYou screen, set the Duration property to following:
1000
set the Start property to following:
IsStart
set the OnTimerEnd property to following:
Set(IsStart, false);
RequestHide()
Within your FormScreen1, set the OnSelect property of Button to following:
SubmitForm(NewNominationForm);
Notify("Form Submitted", Success);
Set the OnSuccess property of the NewNominationForm to following:
ResetForm(NewNominationForm);
Navigate(ThankYouScreen, ScreenTransition.Fade);
Please consider take a try with above solution, check if the issue is solved.
Best regards,