|
|
@@ -13,7 +13,6 @@
|
|
|
additional functionality it is fine to subclass or reimplement
|
|
|
FlutterApplication and put your custom class here. -->
|
|
|
<application
|
|
|
- android:name="io.flutter.app.FlutterApplication"
|
|
|
android:label="example"
|
|
|
android:icon="@mipmap/ic_launcher">
|
|
|
<activity
|
|
|
@@ -23,17 +22,26 @@
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
|
|
|
android:hardwareAccelerated="true"
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
- <!-- This keeps the window background of the activity showing
|
|
|
- until Flutter renders its first frame. It can be removed if
|
|
|
- there is no splash screen (such as the default splash screen
|
|
|
- defined in @style/LaunchTheme). -->
|
|
|
+ <!-- Specify that the launch screen should continue being displayed -->
|
|
|
+ <!-- until Flutter renders its first frame. -->
|
|
|
<meta-data
|
|
|
- android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
|
|
|
- android:value="true" />
|
|
|
+ android:name="io.flutter.embedding.android.SplashScreenDrawable"
|
|
|
+ android:resource="@drawable/launch_background" />
|
|
|
+
|
|
|
+ <!-- Theme to apply as soon as Flutter begins rendering frames -->
|
|
|
+ <meta-data
|
|
|
+ android:name="io.flutter.embedding.android.NormalTheme"
|
|
|
+ android:resource="@style/NormalTheme" />
|
|
|
+
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
+
|
|
|
+ <meta-data
|
|
|
+ android:name="flutterEmbedding"
|
|
|
+ android:value="2" />
|
|
|
+
|
|
|
</application>
|
|
|
</manifest>
|