Skip to content

5.2.0

Choose a tag to compare

@zoontek zoontek released this 22 Dec 14:15
· 130 commits to master since this release
c79a1b1
  • Add darkContentBarsStyle android custom style property in Theme.BootSplash.EdgeToEdge

Example with [email protected], which has the same feature:

<resources>
  <style name="AppTheme" parent="Theme.EdgeToEdge">
    <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
    <item name="darkContentBarsStyle">true</item>
  </style>

  <style name="BootTheme" parent="Theme.BootSplash.EdgeToEdge">
    <item name="bootSplashBackground">@color/bootsplash_background</item>
    <item name="bootSplashLogo">@drawable/bootsplash_logo</item>
    <item name="darkContentBarsStyle">true</item>
    <item name="postBootSplashTheme">@style/AppTheme</item>
  </style>
</resources>