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