You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
## Changelog
2
2
3
+
### 0.20.1
4
+
- Added prop to change interpolated Scale Output Value
5
+
3
6
### 0.20.0 // Rodrigocs
4
7
- Now uses native driver, and tested with React Native 0.46.0
5
8
- Adds `useNativeDriver` to improve performance, but renderScrollComponent must be a Animated component ( ie: Animated.createAnimatedComponent(component))
Copy file name to clipboardExpand all lines: README.md
+7-14Lines changed: 7 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,24 +114,17 @@ The `ParallaxScrollView` component adds a few additional properties, as describe
114
114
|`renderStickyHeader`|`func`| No | This renders an optional sticky header that will stick to the top of view when parallax header scrolls up. |
115
115
|`stickyHeaderHeight`|`number`| If `renderStickyHeader` is used | If `renderStickyHeader` is set, then its height must be specified. |
116
116
|`contentContainerStyle`|`object`| No | These styles will be applied to the scroll view content container which wraps all of the child views. (same as for [ScrollView](https://facebook.github.io/react-native/docs/scrollview.html#contentcontainerstyle)) |
117
+
|`outputScaleValue`|`number`| No | The value for the scale interpolation output value, default `5`|
117
118
118
-
## Latest changes
119
-
120
-
### 0.19.0
121
-
122
-
- Fixes compatibility with React Native 0.27.2
123
-
- Adds `contentContainerStyle` prop to style scroll container (thanks [@alaycock](https://github.com/alaycock))
124
119
125
-
### 0.18.1
126
-
127
-
- Fixes error when inspecting the sticky header due to cyclical object structure
128
-
on `style` (#23)
120
+
## Latest changes
129
121
130
-
### 0.18.0 (Compatibility with React Native 0.20.0)
122
+
### 0.20.1
123
+
- Added prop to change interpolated Scale Output Value
131
124
132
-
-**Breaking:** Removes `ParallaxScrollView#scrollWithoutAnimationTo` since this has been deprecated in React Native. If you used this method previously, use `scrollTo` instead.
133
-
-Adds `ParallaxScrollView#getScrollableNode` method, which is required in React Native 0.20.0 for components implementing
134
-
`ScrollView` interface.
125
+
### 0.20.0 // Rodrigocs
126
+
-Now uses native driver, and tested with React Native 0.46.0
127
+
- Adds `useNativeDriver` to improve performance, but renderScrollComponent must be a Animated component ( ie: Animated.createAnimatedComponent(component))
0 commit comments