Skip to content

Instantly share code, notes, and snippets.

@NickIliev
Created August 14, 2019 11:35
Show Gist options
  • Save NickIliev/564a357c0695a24523336820730002b3 to your computer and use it in GitHub Desktop.
Save NickIliev/564a357c0695a24523336820730002b3 to your computer and use it in GitHub Desktop.
Event propagation (bubbling) in NativeScript
export function onTap(args: EventData) {
console.log(`>>>>>>>>>>> onTap invoked from: ${args.object}`);
const view: View = args.object as View;
animate(view);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment