Highly configurable component imitating native bottom sheet behavior, with fully native 60 FPS animations!
Built from scratch with react-native-gesture-handler and react-native-reanimated.
Usable with Expo with no extra native dependencies!
Open a Terminal in the project root and run:
yarn add reanimated-bottom-sheet
or if you use npm
:
npm install reanimated-bottom-sheet
If you are using Expo, you are done.
If you don't use Expo, install and link react-native-gesture-handler and react-native-reanimated.
import BottomSheet from 'reanimated-bottom-sheet'
class Example extends React.Component {
renderInner = () => (
/* render */
)
renderHeader = () => (
/* render */
)
render() {
return (
<View style={styles.container}>
<BottomSheet
snapPoints = {[450, 300, 0]}
renderContent = {this.renderInner}
renderHeader = {this.renderHeader}
/>
</View>)
}
}
name | required | default | description |
---|---|---|---|
snapPoints | yes | E.g. [300, 200, 0] . Points for snapping of bottom sheet coomponent. They define distance from bottom of the screen. Might be number or percent (as string e.g. '20%' ) for points or percents of screen height from bottom. |
|
initialSnap | no | 0 | Determines initial snap point of bottom sheet. The value is the index from snapPoints. |
renderContent | no | Method for rendering scrollable content of bottom sheet. | |
renderHeader | no | Method for rendering non-scrollable header of bottom sheet. | |
enabledGestureInteraction | no | true |
Defines if bottom sheet could be scrollable by gesture. |
enabledManualSnapping | no | true |
If false blocks snapping using snapTo method. |
enabledInnerScrolling | no | true |
Defines whether it's possible to scroll inner content of bottom sheet. |
callbackNode | no | reanimated node which holds position of bottom sheet, where 0 it the highest snap point and 1 is the lowest. |
|
contentPosition | no | reanimated node which holds position of bottom sheet's content (in dp) |
|
headerPosition | no | reanimated node which holds position of bottom sheet's header (in dp) |
|
overdragResistanceFactor | no | 0 | `Defines how violently sheet has to stopped while overdragging. 0 means no overdrag |
springConfig | no | { } |
Overrides config for spring animation |
innerGestureHandlerRefs | no | Refs for gesture handlers used for building bottom sheet. The array consists fo three refs. The first for PanGH used for inner content scrolling. The second for PanGH used for header. The third for TapGH used for stopping scrolling the content. | |
simultaneousHandlers | no | Accepts a react ref object or an array of refs to handler components. |
Imperative method on for snapping to snap point in given index. E.g.
// Snap to the snap point at index 0 (e.g. 450 in [450, 300, 0])
this.bottomSheetRef.current.snapTo(0)
Method for snapping to any point between highest point and zero. Allows to hide bottom sheet imperatively.
// Snap to position 100dp from bottom.
this.bottomSheetRef.current.snapToPosition(100)
Here this.bottomSheetRef
refers to the ref
passed to the BottomSheet
component.
More complex examples can be found in the Example
folder. To view the examples in the Expo app, open a Terminal and run:
yarn
cd Example
yarn
expo start
The example app is also available on Expo.
It's not finished and some work has to be done yet.
- Play with magic config values
- Horizontal mode
- Deal with GH in inner scrollView
- Cleanup code (e.g. measuring of components)
We use release-it to automate our release. If you have publish access to the NPM package, run the following from the master branch to publish a new release:
yarn release
NOTE: You must have a GITHUB_TOKEN
environment variable available. You can create a GitHub access token with the "repo" access here.