HI @Anonymous ,
Could you please share a bit more about your scenario?
Do you want to edit multiple forms within your Edit screen when you press the "+" icon button within your Main screen?
On your side, you should add two Edit forms within your Edit screen. Then within the Main screen, set the OnSelect proeprty of the "+" icon button to following formula:
NewForm(Form1); /* <-- First form */
NewForm(Form2); /* <-- Second form */
Navigate(EditScreen, ScreenTransition.None)
Then within the Edit screen, set the OnSelect property of the "Submit" button to following:
SubmitForm(Form1);
SubmitForm(Form2)
Set the OnSuccess property of the Form2 to following:
Back()
Best regards,