0.0.85 • Published 5 years ago

react-native-image-header-scroll-view-ep v0.0.85

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

react-native-image-header-scroll-view

badge

A ScrollView-like component that:

  • Has a fixed image header
  • Keep the image as a nav bar
  • Works on iOS and Android

Installation

$ npm install react-native-image-header-scroll-view --save

Demo

react-native-image-header-scroll-view demo android|react-native-image-header-scroll-view demo ios

Basic Usage

import HeaderImageScrollView, { TriggeringView } from 'react-native-image-header-scroll-view';

// Inside of a component's render() method:
render() {
  return (
    <HeaderImageScrollView
      maxHeight={200}
      minHeight={MIN_HEIGHT}
      headerImage={require('../../assets/NZ.jpg')}
    >
      <View style={{ height: 1000 }}>
        <TriggeringView onHide={() => console.log('text hidden')} >
          <Text>Scroll Me!</Text>
        </TriggeringView>
      </View>
    </HeaderImageScrollView>
  );
}

You can find examples in a dedicated repository.

Usage (API)

All of the properties of ScrollView are supported. Please refer to the ScrollView documentation for more detail.

The HeaderImageScrollView handle also the following props. None is required :

Header

PropertyTypeDefault DescriptionExample
renderHeaderfunction Empty viewFunction which return the component to use as header. It can return background image for example.example
headerImageImage source Props (object or number) undefinedShortcut for renderHeader={() => <Image source={this.props.headerImage} style={{ height: this.props.maxHeight, width: Dimensions.get('window').width }} />}example
maxHeightnumber80Max height for the headerexample
minHeightnumber125Min height for the header (in navbar mode)example
minOverlayOpacitynumber0Opacity of a black overlay on the header before any scrollexample
maxOverlayOpacitynumber0.3Opacity of a black overlay on the header when in navbar modeexample
overlayColorstringblackColor of the overlay on the headerexample
headerContainerStyleObjectundefinedOptional styles to be passed to the container of the header component
disableHeaderGrowbooleanundefinedDisable to grow effect on the header
disableOverlaybooleanundefinedDisable the image overlay

Foreground

PropertyTypeDefault DescriptionExample
renderForegroundfunctionEmpty viewFunction which return the component to use at foreground. The component is render in front of the header and scroll with the ScrollView. It can return a title for example.example
renderFixedForegroundfunctionEmpty viewFunction which return the component to use as fixed foreground. The component is displayed with the header but not affected by the overlay.example
foregroundParallaxRationumber1Ration for parallax effect of foreground when scrolling. If 2, the header goes up two times faster than the scrollexample
fadeOutForegroundboolfalseIf set, add a fade out effect on the foreground when scroll upexample
renderTouchableFixedForegroundfunctionEmpty viewSame as renderFixedForeground but allow to use touchable in it. Can cause performances issues on Androidexample

Mixed

PropertyTypeDefault DescriptionExample
ScrollViewComponentComponent ScrollViewThe component to be used for scrolling. Can be any component with an onScroll props (ie. ListView, FlatList, SectionList or ScrollView)example
scrollViewBackgroundColorstring whiteBackground color of the scrollView contentexample

TriggeringView

The module also export a TriggeringView component. It is a simple view witch accept callback called when it disappear or appear at the top of the ImageHeaderScrollView. You can see an exemple in the dedicated repository.

All of the properties of View are supported.

PropertyTypeDescription
onBeginHiddenfunction Called when the component start to be hidden at the top of the scroll view.
onHidefunction Called when the component is not displayed any more after scroll up
onBeginDisplayedfunction Called when the component begin to be displayed again after scroll down
onDisplayfunction Called when the component finished to be displayed again.
onTouchTopfunction Called when the Top of the component touch the Top of the ScrollView. (onDisplay + onBeginHidden)
onTouchBottomfunction Called when the Bottom of the component touch the Top of the ScrollView. (onHide + onBeginDisplayed)

Other open-source modules by the folks at BAM