Skip to content

Releases: zoontek/react-native-bars

2.4.3

07 Jan 18:23
8301c39
Compare
Choose a tag to compare
  • Add Android Gradle plugin 8 compatibility
  • Fix AndroidManifest.xml namespace deprecation warning

2.4.2

29 Dec 13:21
b3e2bac
Compare
Choose a tag to compare
  • Update default darkContentBarsStyle value for easier light / dark themes handling

2.4.1

28 Dec 22:18
3fa5736
Compare
Choose a tag to compare
  • Use android:windowLayoutInDisplayCutoutMode: always on Android >= 11

2.4.0

22 Dec 13:00
04d19af
Compare
Choose a tag to compare
  • Add darkContentBarsStyle android custom style property (documentation)
  • Add RNBars.init(activity: Activity, enableKeyboardHandling: Boolean = true) new static method that uses the darkContentBarsStyle property value
  • Update documentation with react-native 0.73 (Kotlin) instructions

2.3.0

21 Aug 13:47
76e3bd2
Compare
Choose a tag to compare
  • Add windowLayoutInDisplayCutoutMode for Android API 27+

2.2.2

03 Jul 08:51
b2a4eb8
Compare
Choose a tag to compare
  • Use gradle namespace conditionally in order to improve old react native version compatibility.
    ⚠️ Note that this library officially now follows the React Native releases support policy. If you have been impacted by this bug, that means you are using an unsupported react native version and should upgrade to the latest.

2.2.1

25 Jun 10:56
32bdd98
Compare
Choose a tag to compare
  • Add gradle namespace for react native 0.73 compatibility

2.2.0

23 Apr 16:53
9507af0
Compare
Choose a tag to compare
  • Add Theme.EdgeToEdge for easier android setup (#22)
    This means you'll only have to edit your main styles.xml:
<resources xmlns:tools="http://schemas.android.com/tools"><!-- use tools -->

  <!-- make AppTheme inherit from Theme.EdgeToEdge -->
  <style name="AppTheme" parent="Theme.EdgeToEdge">
    <!---->

    <!-- set bars initial styles: true = dark-content, false = light-content -->
    <item name="android:windowLightStatusBar" tools:targetApi="m">true</item>
    <item name="android:windowLightNavigationBar" tools:targetApi="o_mr1">true</item>
  </style>

</resources>

2.1.0

13 Apr 14:49
f0db215
Compare
Choose a tag to compare

2.0.0

10 Apr 11:33
2c2500c
Compare
Choose a tag to compare
  • New architecture support 🎉
  • Drop support for react-native < 0.70