skip to Main Content

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

flutter_native_splash not working and show only white/dark screen

... dependencies: flutter: sdk: flutter cupertino_icons: ^1.0.2 http: ^0.13.6 local_auth: ^2.1.6 rxdart: ^0.27.7 bloc: ^8.1.2 google_fonts: ^4.0.4 flutter_secure_storage: ^8.0.0 flutter_appauth: ^6.0.0 flutter_bloc: ^8.1.3 flutter_spinkit: ^5.2.0 cached_network_image: ^3.2.3 just_audio: ^0.9.33 just_audio_background: ^0.0.1-beta.10 audio_video_progress_bar: ^1.0.1 sliding_up_panel: ^2.0.0+1 flutter_native_splash: ^2.3.0 ... flutter_native_splash: web:…

VIEW QUESTION
Back To Top
Search