mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 22:01:42 +08:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import * as observable from "data/observable";
|
|
import * as frame from "ui/frame";
|
|
|
|
export function itemTap(args: observable.EventData) {
|
|
frame.topmost().navigate({
|
|
moduleName: "gallery-app/" + args.object.get("tag"),
|
|
});
|
|
}
|