Categories

Thursday, March 28, 2024
#919814419350 therichposts@gmail.com
Angular 10Ionic 5

Ionic 5 Angular 10 Sweetalert Modal Pop Up Working

Ionic 5 Angular 10 Sweetalert Modal Pop Up Working

Hello to all, welcome back to my blog. Today in this blog post, I am going to tell you, Ionic 5 Angular 10 Sweetalert Modal Pop Up Working.

Ionic popup alert

Angular10 and Ionic 5 came and if you are new then you must check below two links:

  1. Angular10 for beginners
  2. Angular10 Basic Tutorials
  3. Ionic5

Friends here is the working code snippet for Ionic 5 Angular 10 Sweetalert Modal Pop Up Working and please use this carefully:

1. Firstly friends we need fresh IONIC 5 and ANGULAR 10 setup and for this we need to run below commands but if you already have angular 10 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:

npm install -g @ionic/cli

ionic start myApp blank

cd myApp

ionic serve

 

2. Now we need to run below command into our project terminal to include sweetalert2 modules:

npm install --save sweetalert2

 

3. Now my friends we need to add below code into angular.json file:

"styles": [
              ...
              "node_modules/sweetalert2/src/sweetalert2.scss"
            ],
            "scripts": ["node_modules/sweetalert2/dist/sweetalert2.js"]

 

4. Now friends, we need to run below commands into our project terminal to start ionic application:

ionic serve

 

5. Now my friends we need to add below code into src\app\home\home.pgae.html file:

<button type="submit" class="btn btn-warning" (click)="openmodal()"><strong>Click me to open sweetalert</strong></button>

 

6. Now my friends we need to add below code into src\app\home\home.pgae.ts file:

...
import Swal from 'sweetalert2/dist/sweetalert2.js';
export class HomePage {

...
 openmodal()
  {
    Swal.fire({
      title: 'HURRAY!!',
      text:   "Sweetalert2 is working fine.",
      icon: 'success'
    });
  }

}

 

Now we are done friends and If you have any kind of query or suggestion or any requirement then feel free to comment below.

Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding must watch video above.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.