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
Back To Top
Search