mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
29 lines
498 B
TypeScript
29 lines
498 B
TypeScript
export function pageLoaded() {
|
|
console.log("### TEST START ###.");
|
|
onTapTrue();
|
|
onTapFalse();
|
|
onTapText();
|
|
onTapNull();
|
|
onTapUndefined();
|
|
console.log("### TEST END ###.");
|
|
}
|
|
|
|
export function onTapTrue() {
|
|
console.log(true);
|
|
}
|
|
|
|
export function onTapFalse() {
|
|
console.log(false);
|
|
}
|
|
|
|
export function onTapText() {
|
|
console.log("text");
|
|
}
|
|
|
|
export function onTapNull() {
|
|
console.log(null);
|
|
}
|
|
|
|
export function onTapUndefined() {
|
|
console.log(undefined);
|
|
} |