How to disable default Splash Screen and set a .gif Splash Screen in Ionic

Hello developers, I am back with a new interesting tutorial article on how to disable default Splash Screen and set a .gif Splash Screen in Ionic. So lets get started. Step 1. Set this code in your default controller : $scope.$on(‘$ionicView.afterEnter’, function(){ setTimeout(function(){ document.getElementById(“custom-overlay”).style.display = “none”; }, 3000); }); Step 2. Edit your App.js file…