mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
21 lines
378 B
TypeScript
21 lines
378 B
TypeScript
export function searchTap(args) {
|
|
console.log("Search item tapped!");
|
|
}
|
|
|
|
export function cameraTap(args) {
|
|
console.log("Camera item tapped!");
|
|
}
|
|
|
|
export function trashTap(args) {
|
|
console.log("Trash item tapped!");
|
|
}
|
|
|
|
export function iconTap(args) {
|
|
console.log("Icon item tapped!");
|
|
}
|
|
|
|
export function popTap(args) {
|
|
console.log("Popup item tapped!");
|
|
}
|
|
|