Talha Azhar
Talha Azhar
hey @Monir-Shembesh when I was making my changes I thought of this edge-case being super useful but was too lazy to add it. Wouldn't it be more beneficial to keep...
Hey @Monir-Shembesh, this looks great. However, appending `tintColor` to the start of the array fixes this (instead of expecting the user to add it): `let outputRange = tintColorSecondary.unshift(this.props.tintColor);` This way...
I already agree with the idea of removing `tintColor` completely since that is the correct way to handle this update, however, the final review depends on the Repo Owner. Although...
It looks great. Just make sure to search `tintColor` in the entire repo and remove it elsewhere!
Can confirm that I am also struggling with the same issue for Android. ``` "@capacitor/android": "^2.4.4", "@capacitor/cli": "2.4.4", "@capacitor/core": "2.4.4", ```
Seems like adding `androidScaleType` value helped me for Android. I do not know the equivalent for Cordova, but for Capacitor it was as simple as editing the `capacitor.config.json`: ``` "SplashScreen":...
@basvdijk I had to settle for diving into the native side and creating a [9-Patch File for Splash Screens](https://www.joshmorony.com/creating-a-dynamic-universal-splash-screen-for-capacitor-android/). Honestly worth spending the time to create one and never having...
@dminkovsky the tutorial is using an older version of Capacitor. I am assuming that you are using Capacitor 2+? If so, simple delete the splash folder under `res/drawable` and make...