flutter启动时的背景颜色(不要白屏或黑屏)
2018-12-28 本文已影响185人
WangKiven
android部分
- Activity的theme 配置style背景
<style name="AppTheme.Flutter" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowBackground">@drawable/bg_blue_dark_to_light</item>
</style>
- 配置AndroidManifest.xml
<activity android:name="FlutterActivity"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:hardwareAccelerated="true"
android:theme="@style/AppTheme.Flutter"// theme
android:windowSoftInputMode="adjustResize" >
// 下面是重点
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
</activity>