mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
import * as pages from "ui/page";
|
|
|
|
export function pageLoaded(args) {
|
|
var page = <pages.Page>args.object;
|
|
page.bindingContext = { varFalse: false, varTrue: true, varText: "Text" };
|
|
} |