Screens
From Pointui
A Screen is a canvas to draw on. Usually the drawing happens by placing UI Controls on the screen. Screens can stack on top of each other – this is referred to as Branching to a new Screen and is performed using the Branch() method of the FlowStack object. Just think of each screen being a sheet of paper and you placing a new piece of paper on top of the pile. When you want to go back to the previous screen you FlowStack.Return() from the current screen. You can keep Returning until you get back to the home screen or you can jump directly back to the Home screen by using FlowStack.ReturnToStart().
