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

react-native-reanimated-bottomsheet

v0.0.3

Published

A configurable and performant BottomSheet widget for React Native apps built using Reanimated v2 API.

Downloads

50

Readme

react-native-reanimated-bottomsheet

A configurable and performant BottomSheet widget for React Native apps built using Reanimated v2 API.

Installation

yarn add react-native-reanimated-bottomsheet

or

npm install react-native-reanimated-bottomsheet

Dont forget to install Reanimated and GestureHandler libraries

yarn add react-native-reanimated
yarn add react-native-gesture-handler

or

npm install react-native-reanimated
npm install react-native-gesture-handler

Add Reanimated's babel plugin to your babel.config.js

 module.exports = {
      ...
      plugins: [
          ...
          'react-native-reanimated/plugin',
      ],
  };
  • Note: Reanimated plugin has to be listed last.

Few extra miles for Android

  • Turn on Hermes engine by editing android/app/build.gradle (if you use Hermes)

    project.ext.react = [
    enableHermes: true  // <- here | clean and rebuild if changing
    ]
  • Plug Reanimated in MainApplication.java

    import com.facebook.react.bridge.JSIModulePackage; // <- add
    import com.swmansion.reanimated.ReanimatedJSIModulePackage; // <- add
    ...
    private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
    ...
    
        @Override
        protected String getJSMainModuleName() {
            return "index";
        }
    
        @Override
        protected JSIModulePackage getJSIModulePackage() {
            return new ReanimatedJSIModulePackage(); // <- add
        }
        };
    ...
  • Proguard

    If you're using Proguard, make sure to add rule preventing it from optimizing Turbomodule classes:

    -keep class com.facebook.react.turbomodule.** { *; }

Thats it! You are done with installation 🚀

Usage

import ReanimatedBottomsheet from "react-native-reanimated-bottomsheet";

 <ReanimatedBottomsheet
    snapPoints={[200, 400, 450]}
    renderContent={sheetContent}
    renderHeader={sheetHeader} />

Props

| name | required | default | description | | ------------------------- | -------- | ------- | ------------| | snapPoints | yes | | E.g. [100, 200, 400]. Points for snapping of bottom sheet coomponent. They define distance from bottom of the screen. Must be number to expect the height from bottom. Note: Array values must be in increasing order. | | initialSnap | no | 0 | Determines initial snap point of bottom sheet. The value is the index from snapPoints. | | renderContent | yes | | Method for rendering scrollable content of bottom sheet. The container of the content should have flex:1 to occupy dynamic height. | | renderHeader | yes | | Method for rendering non-scrollable header of bottom sheet. | | enabledGestureInteraction | no | true | Defines if bottom sheet can interact with gestures. | | hasFixedHeight | no | false | Defines if bottom sheet only has one snap point with 0 being initial. This props is used in cases where the gestures are not required but the bottomsheet behaviour is expected. There are also imperative handlers provided to manually snap and close the sheet for such cases. See below for those handlers. For hasFixedHeight={true} configuration, the 0th snapPoint would work as the top height of the sheet. | | springConfig | no | {damping: 50, mass: 0.5, stiffness: 121.6, restSpeedThreshold: 0.3} | Spring config for Bottom Sheet snap/open/close animation of type: WithSpringConfig|

Methods

snapTo(index: number)

Imperative method for snapping the sheet to a known index. E.g.

// Snap to the snap point at given index  (e.g. 1st in [200, 300, 400] would look like snapTo(1))
// which would snap the BottomSheet upto 300 height.
this.bottomSheetRef.current.snapTo(index);

close()

Imperative method for snapping the sheet to 0 height (or to close it).

this.bottomSheetRef.current.close();

Here this.bottomSheetRef refers to the ref passed to the BottomSheet component.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT