0.1.1 • Published 5 years ago

react-native-collapsible-bar-flatlist v0.1.1

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

react-native-collapsible-bar-flatlist

Getting Started

Installation

$ yarn add react-native-collapsible-bar-flatlist
  or
$ npm install react-native-collapsible-bar-flatlist

Usage

<CollapsibleBarFlatList
  BarElement={<Bar/>}
  barHeight={80}
  data={this.data}
  ListFooterComponent={<View style={styles.footer}/>}
  keyExtractor={(item) => item.toString()}
  renderItem={(info) => (
    <View style={styles.item}>
      <Text>{info.item.toString()}</Text>
    </View>
  )}/>
PropertyDescription
BarElement: ReactElementA ReactElement that is shown on the top of the FlatList.
barHeight: numberA height of the bar element. It should be same with BarElement element's height.
isShowBar?: booleanIf you want to switch visibility of the bar, you can set it on this prop. The default value is true.
flatListRef?: (ref: FlatList | null) => voidYou can get a ref of the FlatList like View.ref.

and other props are same with FlatListProps.