mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
import {Page} from "ui/page";
|
|
import {Label} from "ui/label";
|
|
|
|
export function pageLoaded(args) {
|
|
var page = <Page>args.object;
|
|
(<Label>page.content).text += " and loaded";
|
|
}
|