I am starting with angular2 and ionic2;
In ionic2, I have a button that will call a method of my component. Like this:
I had problems with (click)
in iOS but in Android it worked ok. In iOS when I changed application language and right after that clicked link it didn't do anything. I think that's related to Ionic click blocker https://github.com/driftyco/ionic/issues/6996.
But after I changed (click)
to (tap)
after language change link works instantly. I had also problems when language selection did not do anything (even after waiting some time) and changed that also from (click)
to (tap)
and it now works perfectly.