Search This Blog

Showing posts with label ionic 3. Show all posts
Showing posts with label ionic 3. Show all posts

Sunday, May 17, 2020

Background Image resized when Soft keyboard is shown in Android iOS Ionic Cordova

After lot of bang bang finally I found solution to Make full screen CSS background image appear behind a mobile soft keyboard activated on Browser of Anroid Phone or Ionic or Cordova app background


BACKGROUND-SIZE : 100% AUTO -- does the magic


Tuesday, March 19, 2019

Remove PostCSS warning IONIC

Try this

find sass.js file. under /node_modules/@ionic/app-scripts/dist/sass.js
find var postcssOptions and add from: undefined,

Finally should be like this:
var postcssOptions = {
from: undefined,
to: path_1.basename(sassConfig.outFile),
map: autoPrefixerMapOptions
};

Thursday, January 24, 2019

How to Hide White Splash Screen in Ionic 3 - SOLVED

By default, the splash screen is hidden after 3 seconds (see https://github.com/apache/cordova-plugin-splashscreen#configxml). But it could be that at this moment your app is not ready.

Therefore I add always the following preference to my config.xml:



Instead, I hide it manually, as soon as the app is ready:



This is working on iOS as well as on Android.

content-wide advt