Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes React.PropTypes deprecated into its own package since RN 0.45 #77

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ lib/
node_modules/
npm-debug.log

.DS_Store
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ The `ParallaxScrollView` component adds a few additional properties, as describe
| `renderStickyHeader` | `func` | No | This renders an optional sticky header that will stick to the top of view when parallax header scrolls up. |
| `stickyHeaderHeight` | `number` | If `renderStickyHeader` is used | If `renderStickyHeader` is set, then its height must be specified. |
| `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)) |
| `scrollingStickyHeader` | `bool` | No | This causes the sticky header to scroll into view. If set to false the sticky header will only fade in. |
| `outputScaleValue` | `number` | No | The value for the scale interpolation output value, default `5` |


Expand Down
Empty file modified examples/ListView/android/gradlew
100755 → 100644
Empty file.
Empty file modified examples/NestedViews/android/gradlew
100755 → 100644
Empty file.
59 changes: 31 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
{
"name": "react-native-parallax-scroll-view",
"version": "0.20.1",
"description": "A ScrollView-like component with parallax and sticky header support",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jaysoo/react-native-parallax-scroll-view"
},
"files": [
"src",
"demo.ios.gif",
"demo.android.20160117.gif",
"README.md",
"LICENSE"
],
"keywords": [
"react-native",
"react",
"parallax",
"scrollable",
"scrollview",
"sticky",
"react-component",
"ios",
"android"
],
"author": "Jack Hsu",
"license": "ISC"
"name": "react-native-parallax-scroll-view",
"version": "0.20.1",
"description": "A ScrollView-like component with parallax and sticky header support",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jaysoo/react-native-parallax-scroll-view"
},
"files": [
"src",
"demo.ios.gif",
"demo.android.20160117.gif",
"README.md",
"LICENSE"
],
"keywords": [
"react-native",
"react",
"parallax",
"scrollable",
"scrollview",
"sticky",
"react-component",
"ios",
"android"
],
"author": "Jack Hsu",
"license": "ISC",
"dependencies": {
"prop-types": "^15.5.10"
}
}
Loading