@ameni wrote:
hello
I want to know how to add an alert to my application
I added that to my typescript file
- doAlert() {
- let alert = Alert.create({
- title: 'New Friend!',
- subTitle: 'Your friend, Obi wan Kenobi, just accepted your friend request!',
- buttons: ['Ok']
- });
- this.nav.present(alert);
- }
and a click
- ion-item *ngFor="#personne of personnes" (click)="doAlert()">
but it doesn't work what shall I add
thank you
Posts: 1
Participants: 1