skip to Main Content

React Native Expo SDK 52 Splash Screen

I am trying to create a splash screen. I am following the official documentation. https://docs.expo.dev/develop/user-interface/splash-screen-and-app-icon/ and https://docs.expo.dev/versions/latest/sdk/splash-screen/#configuration i am running prebuild and running in android emulator the splash screen just appear as a small image in the center, how can…

VIEW QUESTION

How to remove native splash icon | Flutter

I'm setting up native splash screen in flutter. Problem : I want to delete Flutter icon when app loads (on native level). My AndroidManifest.xml : <application android:label="@string/app_name" android:name="${applicationName}" android:icon="@mipmap/ic_launcher"> <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" ... My styles.xml : <resources> <style name="LaunchTheme"…

VIEW QUESTION

Flutter – Native Splash Dark Mode color not change

I using flutter_native_splash: ^2.4.0, and give proper parameter for light and dark mode backgound color, but its not change I write this code: flutter_native_splash: image: assets/uShop_logo.png color: "#ffffff" color_dark: "#ffffff" image_dark: assets/uShop_logo.png icon_background_color: "#ffffff" android: true ios: true fullscreen: true…

VIEW QUESTION

React Native Bootsplash Library – Android resource linking failed

I installed the Bootsplash library and it works fine on iOS. But when I want to run it on Android, I get the following error; ERROR:quiz_app/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml:5506: AAPT: error: resource color/bootsplash_background (aka com.quiz_app:color/bootsplash_background) not found. My assets folder includes SplashScreenLogo.png MainActivity.java…

VIEW QUESTION

React Native splash screen on ios

I am developing an app using react native and trying to add a splash screen on ios. I have added the following code on AppDelegate.mm - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.moduleName = @"eCare"; // You can add your custom…

VIEW QUESTION
Back To Top
Search