Create a single NS app for cuteness.io, gallery-app and ui-tests-app in apps/

Move all other apps to https://github.com/NativeScript/tns-apps-graveyard
This commit is contained in:
Rossen Hristov
2016-07-05 18:09:57 +03:00
parent c2867e7a1c
commit a18d5e7622
484 changed files with 756 additions and 5501 deletions

View File

@ -0,0 +1,11 @@
import observable = require("data/observable");
export function pageLoaded(args) {
var page = args.object;
var textFieldSecured = page.getViewById("textFieldSecured");
textFieldSecured.secure = true;
var obj = new observable.Observable();
obj.set("textProperty", "text");
page.bindingContext = obj;
}