A ReactNative scrollable stretchy header component.react-native-stretchy
You can install this package via yarn
:
yarn add react-native-stretchy
or npm
npm install react-native-stretchy --save
NOTE: Link react-native-linear-gradient to your project.
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import { StretchyHeader } from 'react-native-stretchy';
class MyStretchyHeader extends Component {
render() {
return (
<StretchyHeader
image={{uri: 'https://example.com/myImageAddress'}}
gradientColors={["#000", "transparent", "#000"]}
onScroll={(position, scrollReachesToBottomOfHeader) => console.log(position, scrollReachesToBottomOfHeader)}
>
<Text>Foo</Text>
<Text>Bar</Text>
</StretchyHeader>
);
}
}
These are default properties that is available for all stretchy components
Prop | Default | Description |
---|---|---|
backgroundColor | #FFF |
Background color of the inner content |
image | null |
The image of the stretchy header (RN image source) |
imageHeight | null |
Height of the stretchy header image (keep ratio of image if not provided) |
imageResizeMode | 'cover' |
ResizeMode of the stretchy header image. You can use one of these values |
gradientColors | [] |
The array of string colors for gradient |
foreground | null |
A RN Component for foreground content of background |
onScroll | null |
A callback function with these arguments: |
position : current position of scroll |
||
scrollReachesToBottomOfHeader : boolean flag for detecting scroll reaches to bottom of header or not |
Prop | Default |
---|---|
gradientStart | null |
gradientEnd | null |
gradientLocations | null |
Simple ScrollView with stretchy header support.
If you want to use FlatList component with stretchy header support, you can use this component instead of StretchyHeader for better rendering and performance.
If you want to use SectionList component with stretchy header support, you can use this component instead of StretchyHeader for better rendering and performance.
_NOTE: In addition to default stretchy props, you can use all available default props of React-Native FlatList and SectionList for StretchyFlatList and StretchySectionList.
You can find all available components usage in example project._
Author: hamidhadi
GitHub: https://github.com/hamidhadi/react-native-stretchy
#react-native #programming