Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Releases: satya164/react-native-tab-view

v0.0.51

21 Jan 02:15
Compare
Choose a tag to compare

Breaking changes

  • Remove TabBarTop, in your code, change it to TabBar
  • Changed activeOpacity prop to pressOpacity for TabBar
  • Removed tabWidth prop for TabBar, pass it in tabStyle

v0.0.49

16 Jan 17:39
Compare
Choose a tag to compare
  • Change default tab bar background and indicator color

v0.0.48

16 Jan 17:40
Compare
Choose a tag to compare

Bug fixes

  • Hide overflow for individual tabs
  • Make sure component is mounted before calling onRequestChangeTab

v0.0.47

16 Jan 17:43
Compare
Choose a tag to compare

Breaking changes

  • Use PureComponent everywhere, removes shouldOptimizeUpdates prop

Bug fixes

  • Allow setting flex on tab without fixed width in tab bar
  • Don't calculate max scroll distance before layout in tab bar
  • Adjust scroll position after layout in tab bar
  • Use content offset on iOS

v0.0.46

16 Jan 17:45
Compare
Choose a tag to compare

New features

  • Add animationEnabled prop to PagerAndroid

v0.0.41

23 Dec 12:07
Compare
Choose a tag to compare

Breaking changes

  • Switch to native pagers by default

    If you want to keep the old behaviour, pass a renderPage prop to TabViewAnimated with,

    props => <TabViewPagerPan {...props} />;

New features

  • Add testID and accessibilityTraits to TabBar items

v0.0.40

17 Nov 08:36
Compare
Choose a tag to compare

Breaking changes

  • Remove <TabViewPage /> which was deprecated in v0.0.32

Bug fixes

  • Disable 'automaticallyAdjustContentInsets' in TabBar
  • Fix maximum callstack size reached error after unmount

v0.0.39

13 Nov 14:58
Compare
Choose a tag to compare

Bug fixes

  • Fix harline shadow for TabBar not visible on iOS

New features

  • Accept an initialLayout prop in TabViewTransitioner

v0.0.38

06 Nov 05:28
Compare
Choose a tag to compare

Breaking changes

  • Drop support for React Native < 0.36

Bug fixes

  • Fix tab bar collapsing on React Native 0.36
  • Prevent jump if an update occurs during transition (thanks to @gre)
  • Fix canJumpToTab behaviour when swiping to a tab
  • Fix flow issues in latest React Native (thanks to @grabbou)

v0.0.35

19 Oct 23:36
Compare
Choose a tag to compare

Bug fixes

  • Various improvements to the default pager (thanks to @julienvincent)

New features and improvements

  • Add canJumpToTab prop to <TabViewTransitioner /> (thanks to @knowbody)