ionic tutorial - Create Dialog in Ionic in Ionicframework - ionic framework - ionic 2 - ionic creator - ionic development



 // An alert dialog
 $scope.showAlert = function() {
   var alertPopup = $ionicPopup.alert({
     title: 'Don\'t eat that!',
     template: 'It might taste good'
   });

   alertPopup.then(function(res) {
     console.log('Hello your first example.');
   });
 };
});
Click below button to copy the code. From wikitechy - ionic tutorial - ionic framework tutorial - team

Related Searches to Create Dialog in Ionic in Ionicframework