Hi @Hit_23 ,
What you can do is set a variable to 1 to show the first popup and to 2 to show the second. For that, in the OnVisible property of the screen include the below formula:
UpdateContext({lclPopUp:1})
Then set the Visible property of the first popup to:
lclPopUp = 1
In the OnSelect property of the control that is used to accept the terms and conditions in the first popup, include the following formula to make the first popup disappear and the second one appear:
UpdateContext({lclPopUp:2})
After that, set the Visible property of the second popup to:
lclPopUp = 2
Finally, use the below formula to also make the second popup disappear:
UpdateContext({lclPopUp:0})