Flutter,Android - 是否可以更改初始(启动)屏幕上的状态栏颜色?

Flutter, Android - Is it possible to change status bar color on splash (launch) screen?

我正在尝试为 Android 更改 Flutter 启动画面上的状态栏颜色。但是,无论我做什么,它的颜色都保持不变(黑色)。我已经尝试在 Android styles.xml 中设置 colorPrimaryDark、statusBarColor 和其他东西。有可能吗?

 <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="android:windowBackground">@drawable/background</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
    <item name="android:windowTranslucentNavigation">true</item>
</style>