1.0.2 • Published 4 years ago

react-native-three-step-bottom-drawer v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

Three step bottom drawer for React Native

Content

Installation

Install react-native-three-step-bottom-drawer.

npm install react-native-three-step-bottom-drawer --save

Usage Example

(go to the example folder for a more fleshed out example)

import React from 'react';
import { View, Text } from 'react-native';
import BottomDrawer from 'react-native-three-step-bottom-drawer';

const TAB_BAR_HEIGHT = 49;

export default class App extends React.Component {
  renderContent = () => {
    return (
      <View>
        <Text>Get directions to your location</Text>
      </View>
    )
  }

  render() {
    return (
      <BottomDrawer
        containerHeight={100}
        offset={TAB_BAR_HEIGHT}
      >
        {this.renderContent()}
      </BottomDrawer>
    )
  }
}

Refer to this code if you want to put a scrollview within the bottom drawer

Configuration

PropTypeDefaultDescription
containerHeightnumber--The height of the drawer.
offsetnumber0If your app uses tab navigation or a header, offset equals their combined heights. In the demo gif, the offset is the header + tab heights so that the drawer renders correctly within the map view.
downDisplaynumbercontainerHeight / 1.5When the drawer is swiped into down position, downDisplay controls how far it settles below its up position. For example, if its value is 20, the drawer will settle 20 points below the up position. The default value shows 1/3 of the container (if containerHeight = 60, the default downDisplay value = 40).
backgroundColorstring'#ffffff'The background color of the drawer.
startUpbooltrueIf true, the drawer will start in up position. If false, it will start in down position.
roundedEdgesbooltrueIf true, the top of the drawer will have rounded edges.
shadowbooltrueif true, the top of the drawer will have a shadow.
onExpandedfunc--A callback function triggered when the drawer is swiped into up position
onCollapsedfunc--A callback function triggered when the drawer is swiped into down position
hasMidbool--condition for have midd level height
downHeightnumber--height of drawer in bottom state
midHeightnumber--height of drawer in middle level
closedrawerbool--if is true close drawer