$ionicLoading An overlay that can be used to indicate activity while blocking user interaction. Usage angular.module('LoadingApp', ['ionic']) .controller('LoadingCtrl', function($scope, $ionicLoading) { $scope.show = function() { $ionicLoading.show({ template: 'Loading...', duration: 3000 }).then(function(){ console.log("The loading indicator is now displayed"); }); }; $scope.hide = function(){ $i