import { topmost } from "tns-core-modules/ui/frame"; import { vm } from "./main-page-vm"; export function onNavigatingTo(args) { console.log("---> [DEFAULT] onNavigatingTo"); args.object.page.bindingContext = vm; } export function tap(args) { console.log("---> [DEFAULT] tap"); } export function navigate(args) { console.log("---> [DEFAULT] navigate"); topmost().navigate("other/other-page"); }