mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
15 lines
367 B
TypeScript
15 lines
367 B
TypeScript
import * as frame from "tns-core-modules/ui/frame";
|
|
|
|
export function onTap(args) {
|
|
var navigationEntry = {
|
|
moduleName: "ui-tests-app/transitions/page1",
|
|
animated: true,
|
|
transition: {
|
|
name: args.object.tag,
|
|
duration: 380,
|
|
curve: "easeIn"
|
|
}
|
|
};
|
|
frame.topmost().navigate(navigationEntry);
|
|
}
|