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

v0.1.6

Published

A cross platform, pure JS implementation of bottom sheets in React Native.

Downloads

485

Readme

React Native Sheet

npm runs with expo

A cross platform, lightweight, pure JS implementation (no dependencies) of bottom sheets in React Native, written in TypeScript.

React Native Sheet React Native Sheet React Native Sheet

Features

  • :computer: :iphone: Cross platform: iOS, Android and Web!
  • :no_entry_sign: No dependencies: Just requires React Native and React peer dependencies.
  • :last_quarter_moon: Light and Dark mode supported by default, and responds to changes automatically.
  • :arrow_up_down: Draggable: You can drag to close once you cross the close threshold, and a drag marker will show to indicate this.
  • :round_pushpin: Closeable using background: By tapping on the background behind the sheet, the sheet will be closed.
  • :arrow_backward: Closeable using Android back button: will automatically close the bottom sheet OR call your own custom callback.
  • :monocle_face: Responds to height changes: if the height prop changes, the bottom sheet will change height while open.
  • :art: Customisable and easy to style with lots of prop options.
  • :speech_balloon: Callbacks galore: Lots of easy to use callbacks, such as onOpenStart and onOpenFinish.
  • :blue_book: TypeScript support - fully written in TypeScript.
  • :white_check_mark: Tested using Jest.

Like the library?

or a beer! :beer:

Installation

npm install react-native-sheet

or, if you use Yarn

yarn add react-native-sheet

Usage

TypeScript example

Add your ref using a hook and the BottomSheet component with its content. The props reference table is below, and the API of the ref is also below.

import { BottomSheet } from 'react-native-sheet';

// ...

export default function App() {
  const bottomSheet = useRef<BottomSheetRef>(null);

  return (
    <View>
      <BottomSheet height={400} ref={bottomSheet}>
        <Text>Your bottom sheet content goes here</Text>
      </BottomSheet>
      <TouchableOpacity onPress={() => bottomSheet.current?.show()}>
        <Text>Open bottom sheet</Text>
      </TouchableOpacity>
    </View>
  );
}

JavaScript example

import { BottomSheet } from 'react-native-sheet';

// ...

export default function App() {
  const bottomSheet = useRef(null);

  return (
    <View>
      <BottomSheet height={400} ref={bottomSheet}>
        <Text>Your bottom sheet content goes here</Text>
      </BottomSheet>
      <TouchableOpacity onPress={() => bottomSheet.current.show()}>
        <Text>Open bottom sheet</Text>
      </TouchableOpacity>
    </View>
  );
}

Props

| Prop | Required | Description | Possible Values | Default | | ------------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------- | --------------------------------- | | children | Yes | The content to show inside the Bottom Sheet. | React Node | - | | height | Yes | The height of the bottom sheet once opened. | number | - | | onRequestClose | No | Android only, when the user presses the device's back button, this callback will be called. Important: if you do NOT provide this prop, when the user presses the device's back button, the bottom sheet will close. | undefined OR void function | undefined | | colorScheme | No | Force the bottom sheet to be a specific colour scheme. 'auto' will use host OS colour scheme (eg light or dark) and automatically change when host OS scheme changes. | 'auto', 'light', 'dark' | 'auto' | | backdropClosesSheet | No | Whether tapping/clicking on the backdrop behind the bottom sheet will close it. | true/false | true | | backdropBackgroundColor | No | RGBA or Hex string value for the backdrop color. | RGBA/Hex string | '#25252599' | | sheetBackgroundColor | No | RGBA or Hex string value for the background color of the bottom sheet. | RGBA/Hex string | Dark: '#222222', Light: '#F3F3F3' | | sheetStyle | No | Inline JS style override for bottom sheet | Style object | undefined | | draggable | No | Whether the bottom sheet is draggable. | true/false | true | | showDragIcon | No | Whether to show the drag icon handle. Only displayed if draggable is set to true as well. | true/false | true | | dragIconColor | No | RGBA or Hex string value for the color of the drag icon handle. | RGBA/Hex string | Dark: '#444444', Light: '#A3A3A3' | | dragIconStyle | No | Inline JS style override for drag icon handle. | Style object | undefined | | contentContainerStyle | No | Inline JS style override for content container style. | Style object | undefined | | borderRadius | No | How rounded the corners of the sheet should be. | number | 10 | | openTime | No | How long the opening animation should take. | number | 300 | | closeTime | No | How long the closing animation should take. | number | 300 | | onOpenStart | No | Called when the bottom sheet begins to open. | Void function | undefined | | onOpenFinish | No | Called when the bottom sheet finishes opening. | Void function | undefined | | onCloseStart | No | Called when the bottom sheet begins to close. | Void function | undefined | | onCloseFinish | No | Called when the bottom sheet finishes closing. | Void function | undefined |

Ref functions

Used by calling the functions on the ref, eg bottomSheet.current?.show().

| Function | Description | | --------- | ------------------------ | | .show() | Opens the bottom sheet. | | .hide() | Closes the bottom sheet. |

Example app

See the example folder for an example app. Simply:

  1. Open example folder in a terminal (eg cd example)
  2. Run yarn install to install dependencies
  3. Run yarn start to open Expo and from there, you can open the example app in iOS, Android and Web.

Tests

Run yarn test to run all tests.

Author

Harvey Appleton

Contributing

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

License

MIT

PRs are most welcome, with the requirement that they meet eslint, TypeScript and testing standards.