Posts

Showing posts from May, 2021

Java Script sample code

1- Heiglight text when user click on input <ion-input (click) ="onClick($event)></ion-input>   onClick ( nativeEl ){        nativeEl . target . autofocus = true ;      nativeEl . target . select ();   }

Status bar in Ionic keeps flashing or stays white

Image
  The status bar in our and the ionic example (list and conferenceapp) apps flashes white and then stays white. It sometimes keeps flashing which is annoying. Solution 1: open androidmanifest.xml file edit the line android:theme="@style/AppTheme.NoActionBarLaunch" change it to: android :theme ="@android:style/Theme.Translucent"   Then save     solution 2: disable the CSS Trick of the .menu-content CSS class .platform-android8_1 .menu-content , // ionic 3 .plt-android .menu-content { transform : none }