mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-20 07:26:11 +08:00
17 lines
522 B
TypeScript
17 lines
522 B
TypeScript
import * as pageModule from "tns-core-modules/ui/page";
|
|
import * as model from "./myview";
|
|
|
|
export function onLoaded(args: { eventName: string, object: any }) {
|
|
var page = <pageModule.Page>args.object;
|
|
page.bindingContext = new model.ViewModel();
|
|
}
|
|
|
|
export function onStretchLastChild(args: { eventName: string, object: any }) {
|
|
var layout = args.object.parent;
|
|
if(layout.stretchLastChild === true) {
|
|
layout.stretchLastChild = false;
|
|
} else {
|
|
layout.stretchLastChild = true;
|
|
}
|
|
}
|