Flow

From Pointui

A flow can contain one or many screens and is typically used for two or more screens. Users can navigate multi-screen flows by swiping left and right between the screens.

Contents

Methods

void AddScreen(Screen screenToAdd)

Adds another screen to this flow. Screens should be added before the Flow is branched to.

Screen* GetScreen(int index)

AVAILABLE SINCE: 2.1 Returns a pointer to the screen at the specified index in this flow.

void NextScreen()

AVAILABLE SINCE: 2.1 Moves to the next screen in the flow.

void PrevScreen()

AVAILABLE SINCE: 2.1 Moves to the previous screen in the flow.