Skip to main content

Posts

Showing posts with the label Ionic Framework

How To Disable / Enable Content Scrolling in IONIC Framework?

Content Scrolling  Disable Enable IONIC Framework -  We can disable/enable scrollbar pragmatically.   There are some  some example are give, you your   suitable. Example 1 -   Try a setting <content scroll="false"> that will disable scrolling. Example 2 , You can alos used this as a quick fix – This every time an event is called, in our case, on every drag event. Disable Scrolling - $ionicScrollDelegate . getScrollView (). __enableScrollY = false Enable Scrolling - $ionicScrollDelegate . getScrollView (). __enableScrollY = true Example 3, $timeout ( function (){    $ionicScrollDelegate . $getByHandle ( 'formularContent' ). freezeScroll ( true ); }) Example 4, Add the .scss file – .no-scroll .scroll-content {     overflow : hidden ; } And Then add the no-scroll class to your ion-content like this – < ion-content class = "no-scroll" > .. </ ion-cont...

Ionic Framework Interview Questions and Answers

What Is Ionic Framework? Ionic Framework is an HTML5 mobile app development framework targeted at building hybrid mobile apps. Ionic Framework is complete open-source SDK, test, and deploy cross-platform . Ionic Framework is created by Max Lynch , Ben Sperry and Adam Bradley in 2013 and the original version was released in 2013 and built on top of AngularJs and Apache Cordova. The recent releases known as Ionic/Ionic 3 , are built on Angular . Ionic Framework is focused mainly on the look and feel, and UI interaction of your app. That means we aren't a replacement for PhoneGap or your favorite JavaScript framework . Ionic Framework uses Cordova plug-in to gain access to host operating systems features such as Camera, GPS, Flashlight, etc. In short - Ionic Framework is an Angular Application with a neat set of Angular components and pre validated Cordova plug-in. And of-course Ionic framework can be used for web app also (Cordova plug-in will not wo...