-
Notifications
You must be signed in to change notification settings - Fork 8
PageFlow Widget
Marcus Mascord edited this page Jul 15, 2014
·
2 revisions
PageFlow stores the pages that are shown to the user. It handles the page transformation between pages, and records the navigation so it is possible to use the back button. Many of the features of PageFlow are controlled here, making page transformation easier for the developer.
The attributes for the PageFlow widget are:
Attribute | Type | Description |
---|---|---|
m | Widget | The main Widget Class. |
s | WidgetStyle | The style of the widget. |
currentShownPage | Page | This is the page that is currently being shown to the user. On top of the stack. |
pageFlow | Array of Page | Array of Page widget. |
pageFlowController | IPageFlowController | This stores the IPageFlowController, if it is not stored at page level. |
The PageFlow widget is used in conjunction with the Page widget. For an example on how to use the PageFlow and Page widget click HERE.