Hi guys! I'm looking into creating a gallery that would execute repeating tables, with reference to Shane Young's YouTube tutorial on PowerApps Repeating Tables like InfoPath Part 1 - Enter the data: PowerApps Repeating Tables like InfoPath Part 1 - Enter the data (youtube.com).
The intended outcome would be when I pressed the "Done" Button after entering all the fields in the textboxes in the gallery, a fresh gallery pops out right below it and the contents that was just entered in the first gallery remains there. But my issue is, when the fresh gallery pops out right below the first gallery after the "Done" button is pressed, the content in the textboxes in the first gallery disappears. I have not used any form controls, just a vertical gallery in a screen.
This is a button where once it is pressed, it would bring me to the screen that has a gallery in a screen:

And the following is the expression for the "Next Page" button:
ClearCollect(BZZCollection,{LineNomValStraight: 0, LineActStraight: 0, LineNomValCurve: 0, LineActCurve: 0}); Navigate(TrialPage)
The screenshot below shows a "TrialPage" screen with a gallery after the "Next Page" button is pressed and before the "Done" button is pressed:

The screenshot below shows after the "Done" button is pressed:

The expression for my "Done" button is as follows:
Patch(BZZCollection,ThisItem,{LineNomValStraight: InputNomiValStr, LineActStraight: InputActlValStr, LineNomValCurve: InputNomiValCur, LineActCurve: InputNomiValCur}); Collect(BZZCollection,{LineNomValStraight:0, LineActStraight:0, LineNomValCurve:0, LineActCurve:0})
Did I missed any steps or is there any steps I have done wrongly? Thanks!