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-scrollable-bottom-sheet

v0.2.1

Published

A scrollable bottom sheet modal for react native

Downloads

6

Readme

React Native Scrollable Bottom Sheet

A simple bottom sheet popup modal that supports scrollable content for React Native. Fully supports Expo. Uses react-native-reanimated and react-native-gesture-handler.

Demo

Features

  • Supports scrollable content!
  • Lightweight
  • Fully customizable
  • Fluid and native scrolling
  • Smooth swipe to dismiss and swipe to scroll
  • Tap background to dismiss
  • Auto adjusts size based on content within sheet
  • Immediate interactivity with background elements when dismissed

Installation

npm install react-native-scrollable-bottom-sheet

Example

import * as React from 'react';

import { StyleSheet, View, Text, Button, type TextStyle } from 'react-native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import BottomSheet from 'react-native-scrollable-bottom-sheet';

// Do not forget to wrap your app in GestureHandlerRootView
export default function App() {
  return (
    <GestureHandlerRootView style={{ flex: 1, backgroundColor: 'white' }}>
      <ExampleBottomSheet />
    </GestureHandlerRootView>
  );
}

const ExampleBottomSheet = () => {
  const [visible, setVisible] = React.useState<boolean>(false);

  const onVisibilityChange = (visible: boolean) => {
    setVisible(visible);
  };
  return (
    <View style={styles.container}>
      <Button
        title="Open Bottom Sheet"
        onPress={() => {
          setVisible(true);
        }}
      />
      <BottomSheet onVisibilityChange={onVisibilityChange} visible={visible}>
        <Text style={headerTextStyle}>Bottom Sheet</Text>
        <Text style={headerTextStyle}>
          Your content here! It will automatically scroll when it overflows!
        </Text>
        <View style={{ height: 20 }} />
        <Button
          title="Close Sheet"
          onPress={() => {
            setVisible(false);
          }}
        />
        <View style={{ height: 20 }} />
      </BottomSheet>
    </View>
  );
};

const headerTextStyle: TextStyle = {
  textAlign: 'center',
  fontSize: 24,
  fontWeight: 'bold',
  padding: 20,
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
});

Full Example

There is a full example located in ./example/src/App.tsx, also showing off more customization and props.

To run it, clone this repository. Run npm install in the root folder. Within the example folder, run npm install and npx expo start and connect with Expo.

Documentation

The prop interface is documented in src/index.tsx for the interface BottomSheetProps. Also below.

Props

| Prop | Type | Default | Description | | ------------------------------ | ------------------- | ------------------------------- | --------------------------------------------------------------------------------------------------------- | | visible | boolean (required) | | Indicates whether the bottom sheet is currently visible or not. | | onVisibilityChange | function (required) | | A callback function invoked when the visibility of the bottom sheet changes. | | fullScreenPaddingTop | any | 0 | Additional padding from the top of the total height when in fully expanded. Defaults to 0. | | children | any | | The content to be displayed inside the bottom sheet. | | swipeDownThreshold | number | 50 | The threshold (in pixels) that triggers the swipe down gesture to close the bottom sheet. Defaults to 50. | | showScrollbar | boolean | false | Show the scrollbar or not. Defaults to false. | | animateBackdropOpacityWithDrag | boolean | false | Animate the opacity of the backdrop while dragging down the sheet. Defaults to false. | | interactiveMaxHeight | number | Dimensions.get('window').height | The interactive height area of the sheet. Recommended to keep this undefined. | | hideHandle | boolean | false | Hide the handle for the bottom sheet container. | | handleStyles | any | | Styles for the handle element. | | hideSheetBackgroundContainer | boolean | false | Hide the background and container for the entire bottom sheet. This also hides the handle. | | sheetBackgroundContainerStyles | any | | Styles for the container of the bottom sheet. | | customSheetMass | number | 0.4 | The mass used for the closing/opening animation of the sheet | | customSheetDamping | number | 100 | The damping used for the closing/opening animation of the sheet | | useEnteringAndExitingAnimations | boolean | false | Use reanimated entering and exiting animations instead of legacy animated values. This can introduce errors with Tab.Navigator and unmounting if enabled, but disables lazy loading