npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@vaicar/react-native-bottom-sheet

v1.0.4

Published

Simple and fast bottom sheet for react-native

Downloads

8

Readme

react-native-bottom-sheet

Simple and fast bottom sheet for react-native. Built with react-native-reanimated and react-native-gesture-handler.

This library is compatible with Expo.

Table of Contents

Installation

npm install @vaicar/react-native-bottom-sheet

or if you use yarn:

yarn add @vaicar/react-native-bottom-sheet

If you are not using Expo, make sure to install react-native-reanimated and react-native-gesture-handler .

Setup

If you want the bottom sheet to be in front of everything (like header, bottom tabs, etc), you will have to wrap your root navigation component with the BottomSheetPortalHost component, like that:

import { BottomSheetPortalHost } from '@vaicar/react-native-bottom-sheet';  
<BottomSheetPortalHost>  
   <Navigation ... />  
</BottomSheetPortalHost>  

Usage

import React from 'react';
import { View, TouchableOpacity, Text } from 'react-native';
import BottomSheet from '@vaicar/react-native-bottom-sheet';

export default class MyComponent extends React.Component {

  constructor(props) {
    super(props);
    this.bottomSheetRef = React.createRef();
  }

  openBottomSheet = () => {
    this.bottomSheetRef.current.open();
  };

  closeBottomSheet = () => {
    this.bottomSheetRef.current.close();
  };

  render() {
    return (
      <View>
        <TouchableOpacity
          onPress={this.openBottomSheet}
        >
          <Text>Open bottom sheet</Text>
        </TouchableOpacity>
        <BottomSheet
          closeOnDragDown
          ref={this.bottomSheetRef}
          height={400}
          duration={200}
          onClose={() => {
            console.log('Bottom sheet closed!');
          }}
          onOpen={() => {
            console.log('Bottom sheet opened!');
          }}
        >
          <Text>Hello world!</Text>
        </BottomSheet>
      </View>
    );
  }
}

If you're not using BottomSheetPortalHost, make sure to set the property usePortal to false.

Props

| name | required | default | description | | ------------------------- | -------- | ------- | ------------| | height | yes | | Bottom sheet's height | | duration | no | 300 | The open/close animation's duration (in ms) | closeOnDragDown | no | true | Closes the bottom sheet on drag down | | | closeOnPressMask | no | true | Closes the bottom sheet when the user clicks on the background mask | | | fadeMask | no | true | fade the background when bottom sheet is opened/closed or moved | | | onClose | no | () => {} | Called when the bottom sheet finishes the closing animation. | | | onOpen | no | () => {} | Called when the bottom sheet finishes the opening animation. | | | usePortal | no | true | If true, the bottom sheet will use the BottomSheetPortalHost component, to move the bottom-sheet on top of everything. | |

Methods

open()

Opens the bottom-sheet. Returns a promise, that's resolved when the bottom sheet finishes the opening animation.

this.bottomSheetRef.current.open().then(() => {
 // bottom sheet finished the opening animation
})

close()

Closes the bottom-sheet. Returns a promise, that's resolved when the bottom sheet finishes the closing animation.

this.bottomSheetRef.current.close().then(() => {
 // bottom sheet finished the closing animation
})

TODO

  1. Add examples;
  2. Add tests;
  3. Improve documentation
  4. Add more props to make the component more customizable.