Skip to content

Releases: okwasniewski/react-native-bottom-tabs

Release 0.5.2

13 Nov 17:28
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.1...v0.5.2

Release 0.5.1

12 Nov 19:03
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.5.1

Release 0.5.0

11 Nov 17:08
Compare
Choose a tag to compare

What's Changed

Build changes

It's now required to build your app with use_frameworks!, :linkage => :static.

For Expo users add this to your app.json

{
  "expo": {
    "plugins": [
       "react-native-bottom-tabs",
+      [
+        "expo-build-properties",
+        {
+          "ios": {
+            "useFrameworks": "static"
+          }
+        }
+      ]
+    ]
  }
}

SVG Support!

image

You can now pass .svg images either statically or remotely. This release contains rewritten icon handling.

<Tab.Screen
  name="Albums"
  component={Albums}
  options={{
    tabBarIcon: () => require('person.svg'),
    // or
    tabBarIcon: () => ({ uri: 'https://example.com/icon.svg' }),
  }}
/>

Custom fonts

image

You can now pass custom tabLabelStyle:

<Tab.Navigator
  tabLabelStyle={{
    fontFamily: 'Avenir',
      fontSize: 15,
   }}
>

Full Changelog: v0.4.0...v0.5.0

Release 0.4.0

08 Nov 16:52
Compare
Choose a tag to compare

What's Changed

Warning

ignoresTopSafeArea prop's default value is now true!

Full Changelog: v0.3.2...v0.4.0

Release 0.3.2

05 Nov 18:26
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.3.1...v0.3.2

Release 0.3.1

03 Nov 17:29
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.0...v0.3.1

Release 0.3.0

01 Nov 15:32
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.1...v0.3.0

Release 0.2.1

31 Oct 09:43
Compare
Choose a tag to compare

What's Changed

Thanks to @zoontek for help with edge-to-edge support!

Full Changelog: v0.2.0...v0.2.1

Release 0.2.0

30 Oct 09:13
Compare
Choose a tag to compare

What's Changed

This plugin sets correct style theme for Android.

"expo": {
+   "plugins": ["react-native-bottom-tabs"]
  }
}

Full Changelog: v0.1.4...v0.2.0

Release 0.1.4

29 Oct 10:24
Compare
Choose a tag to compare

What's Changed

  • fix: codegen didn't run warning on android by @atlj in #91
  • fix: remove native warning when there are no images passed by @okwasniewski in #92

New Contributors

  • @atlj made their first contribution in #91

Full Changelog: v0.1.3...v0.1.4