Skip to content

Commit 81552eb

Browse files
committed
Initial commit
0 parents  commit 81552eb

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed

LICENCE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2017 BAM
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# react-native-image-header-scroll-view
2+
3+
A ScrollView-like component that:
4+
- Has a fixed image header
5+
- Keep the image as a nav bar
6+
- Works on iOS and Android

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "react-native-image-header-scroll-view",
3+
"version": "0.0.1",
4+
"description": "ScrollView with an image in header which become a navbar",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"test": "jest"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/bamlab/react-native-image-header-scroll-view.git"
12+
},
13+
"keywords": [
14+
"React-native",
15+
"ScrollView",
16+
"animation",
17+
"navbar"
18+
],
19+
"author": "Nhacsam <[email protected]>",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/bamlab/react-native-image-header-scroll-view/issues"
23+
},
24+
"homepage": "https://github.com/bamlab/react-native-image-header-scroll-view#readme"
25+
}

src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/**
2+
* Created by nicolasd on 19/01/17.
3+
*/

0 commit comments

Comments
 (0)