Skip to content

Instantly share code, notes, and snippets.

@Ondina
Created November 3, 2011 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ondina/1336473 to your computer and use it in GitHub Desktop.
Save Ondina/1336473 to your computer and use it in GitHub Desktop.
NavigationModel (ViewNavigatorApplication)
package com.robotlegs.demos.robotlegsincremental.models
{
import com.robotlegs.demos.robotlegsincremental.views.components.AnotherView;
import com.robotlegs.demos.robotlegsincremental.views.components.OtherView;
import com.robotlegs.demos.robotlegsincremental.views.components.SomeView;
public class NavigationModel
{
protected var _stackViews:Array=[SomeView, AnotherView, OtherView];
public function get stackViews():Array
{
return _stackViews;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment