Releases: satya164/react-native-tab-view
Releases · satya164/react-native-tab-view
v0.0.51
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
- Change default tab bar background and indicator color
v0.0.48
Bug fixes
- Hide overflow for individual tabs
- Make sure component is mounted before calling onRequestChangeTab
v0.0.47
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
New features
- Add
animationEnabled
prop to PagerAndroid
v0.0.41
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
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
Bug fixes
- Fix harline shadow for
TabBar
not visible on iOS
New features
- Accept an
initialLayout
prop in TabViewTransitioner
v0.0.38
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
Bug fixes
New features and improvements
- Add
canJumpToTab
prop to <TabViewTransitioner />
(thanks to @knowbody)