For the end of unit projects a few students were asking about multiple screens. Here is one way to do it.

There is an Add Screen button in the Designer view – I added a screen and named it Georgian.

On Screen 1 I have a ListPicker called ListPicker1 (I expect better names!). The ElementsFromString property has Georgian,Algonquin in it (the two colleges I was using in my project).

In Blocks for Screen1 I picked the ListPicker1 object and selected the AfterPicking event. Then an if statement where I compared what they had selected with the text Georgian. The Control blocks has a block called open another screen where you need to pass the parameter screenName (in this case “Georgian”).
Note, I could use a button and do this, but this is an easy way to meet some of the requirements for the task!

On the Georgian screen I added a button (please use a better name than Buton1) and in the blocks I chose close screen from the control blocks – this returns the app to Screen1.