Files
Vladimir Enchev 5c130e45ce more event fixes
2015-06-01 17:23:46 +03:00
..
2015-06-01 17:04:06 +03:00
2015-06-01 17:23:46 +03:00
2015-06-01 17:04:06 +03:00
2015-06-01 17:04:06 +03:00
2015-03-03 10:34:40 +02:00
2015-03-03 10:34:40 +02:00

Use the frame in the following way:

To navigate to the starting page of the application

// put this in the bootstrap.js
var app = require("application");
var frameModule = require("ui/frame");

app.onLaunch = function(context) {
	var frame = new frameModule.Frame();
	frame.navigate("testPage");
}