April 2017
Beginner to intermediate
378 pages
7h 57m
English
The next plugin we are going to work with is the Toast plugin. This plugin shows text popups that do not block the user's interaction with the app.
You can learn more about this plugin here: https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin or https://ionicframework.com/docs/native/toast/.
We will scaffold a new blank app using the following command:
ionic start -a "Example 17" -i app.example.seventeen example17 blank --v2
Once the app is scaffolded, cd into the example17 folder. Now we will add the Toast plugin, run:
ionic plugin add cordova-plugin-x-toast
Then we will add the Ionic Native Toast module:
npm install --save @ionic-native/toast
Next, we will add Toast as a provider in example17/src/app/app.module.ts. Update ...
Read now
Unlock full access