You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to build my app with Ionic 2 and for this i use tinder card like this : https://devdactic.com/ionic-2-tinder-cards/ But on some android device ( sony z4 compact, sony z5 compact and HUAWEI P8 lite) next card not load.
The array which contain card is this.cards I try to display it with log and it contain the good value. The card display only after click on button for display menu. Or it can work if used button which call voteUp(true/false) function swipe, in theory call the same function but the result is totaly different. My code :
ts file
addNewCards(count: number) {
this.auth.getToken().subscribe(data=>{
let url='http://my.url/api/api.php/'+data+'/repas/' + count;
let result= this.http.get(url).map(data => data.json().msg)
this.cache.loadFromObservable('repas'+count, result)
.subscribe(msgs => {
for (let val of msgs){
this.cards.push(val[0]);
}
});
});
}
sorry but it is not possible because the problem appear only on android device but when the updateState is call ( ionic menu, ionic alert) the card appear
Hello
Firstly i want to say thanks for this plugin
I try to build my app with Ionic 2 and for this i use tinder card like this : https://devdactic.com/ionic-2-tinder-cards/ But on some android device ( sony z4 compact, sony z5 compact and HUAWEI P8 lite) next card not load.
The array which contain card is this.cards I try to display it with log and it contain the good value. The card display only after click on button for display menu. Or it can work if used button which call voteUp(true/false) function swipe, in theory call the same function but the result is totaly different. My code :
ts file
template file :
The text was updated successfully, but these errors were encountered: