Package | feathers.extensions.tabbedApplication |
Class | public class ViewNavigatorApplication |
Inheritance | ViewNavigatorApplication ![]() ![]() |
ViewNavigator
as the root display object.
See also
Property | Defined By | ||
---|---|---|---|
context3DProfile : String
The profile used by Starling when creating its Context3D. | ViewNavigatorApplication | ||
![]() | keyCode : String
Keyboard key code to pop view
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | latencyToStartSwipe : uint
The latency in pixels to start swipe
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | length : uint [read-only]
Number of views in the navigation stack. | ViewNavigator | |
![]() | owner : Object
The tabbed navigators that is currently displaying this navigator
[TabbedViewNavigatorApplication-only]. | ViewNavigator | |
![]() | persistNavigatorState : Boolean
In-memory persistence saves navigators, views and data as the user navigates the application
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | position : uint [read-only]
Position in the navigation stack. | ViewNavigator | |
![]() | speedBackReleaseSwipe : uint
Speed back in pixels when you release swipe
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | speedSwipe : Number
Swipe speed to change View
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | swipeView : Boolean
Swipe to change View
[ViewNavigatorApplication-only]. | ViewNavigator | |
theme : Class
The fully-qualified class name of the application's theme, to be
instantiated by Feathers once Starling has created its context, but
before the application root class is created. | ViewNavigatorApplication | ||
![]() | vnID : String
The navigator id that is currently displaying by the tabbed navigators
[TabbedViewNavigatorApplication-only]. | ViewNavigator |
Method | Defined By | ||
---|---|---|---|
Constructor. | ViewNavigatorApplication | ||
![]() | clear():void
Clear the persistence views and data
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | exit(errorCode:int = 0):void
Exit to the application and clear the persistence navigators, views and data
[ViewNavigatorApplication-only]. | ViewNavigator | |
![]() | historyDataUpdate():void
Update data in a view. | ViewNavigator | |
![]() | popView(transition:Function = null):DisplayObject
Pops the current view off the navigation stack. | ViewNavigator | |
![]() | pushView(screen:Object, data:Object = null, transition:Function = null):void
Pushes a new view to the top of the navigation stack. | ViewNavigator | |
![]() | save():void
Save views and data
[ViewNavigatorApplication-only]. | ViewNavigator |
context3DProfile | property |
context3DProfile:String
The profile used by Starling when creating its Context3D.
Must be set in MXML and cannot be set after initialization.
.Warning: When using
[Frame]
metadata to customize the initialization of
Starling, this property will be ignored. You will need to pass in
the Context3D profile manually in your custom bootstrap class.
public function get context3DProfile():String
public function set context3DProfile(value:String):void
theme | property |
theme:Class
The fully-qualified class name of the application's theme, to be instantiated by Feathers once Starling has created its context, but before the application root class is created.
Must be set in MXML and cannot be set after initialization.
.Warning: When using
[Frame]
metadata to customize the initialization of
Starling, this property will be ignored. You will need to instantiate
the theme manually in your custom bootstrap class.
public function get theme():Class
public function set theme(value:Class):void
ViewNavigatorApplication | () | Constructor |
public function ViewNavigatorApplication()
Constructor.