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

@g33n/rn-snackbar

v1.5.0

Published

Material Design "Snackbar" component for Android and iOS.

Downloads

25

Readme

React Native Snackbar

Node.js Package deploy

Material Design "Snackbar" component for Android and iOS. Supports custom colors, fonts, background, position and languages.

Snackbars are used for displaying a brief message to the user, along with an optional action. They animate up from the bottom of the screen and then disappear shortly afterward.

See Google's Material Design guidelines for more info on Snackbars and when to use them.

How it works

Snackbar.show({
  text: "Hello world",
  duration: Snackbar.LENGTH_SHORT,
});

to include an action button:

Snackbar.show({
  text: "Hello world",
  duration: Snackbar.LENGTH_INDEFINITE,
  action: {
    text: "UNDO",
    textColor: "green",
    onPress: () => {
      /* Do something. */
    },
  },
});

maybe you need change the position:

Snackbar.show({
  text: "Hello world",
  duration: Snackbar.LENGTH_INDEFINITE,
  position: Snackbar.POSITION_TOP,
});

Also you can set a image as background:

Valid formats: jpg, png, svg

Snackbar.show({
  text: "Hello world",
  duration: Snackbar.LENGTH_INDEFINITE,
  backgroundImage: "your image location",
});

Installation

  1. Install:

    • Using npm: npm install rn-snackbak --save
    • Using Yarn: yarn add rn-snackbak
  2. Link:

    • RN >= 0.60 supports autolinking: first cd ios && pod install && cd ..
    • RN < 0.60: react-native link rn-snackbak
    • Or if that fails, link manually using these steps
    • Note that because this is a native module, Expo does not support it -- to use with Expo you need to eject to ExpoKit
  3. Import it in your JS:

    import Snackbar from "rn-snackbak";

Usage

Snackbar.show(options)

Shows a Snackbar, dismissing any existing Snackbar first. Accepts an object with the following options:

| Key | Data type | Default value? | Description | | ----------------- | -------------------------- | ------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | text | string | Required. | The message to show. | | duration | See below | Snackbar.LENGTH_SHORT | How long to display the Snackbar. | | position | See below | Snackbar.POSITION_TOP Where you want display the Snackbar. | | textColor | string or style | 'white' | The color of the message text. | | backgroundColor | string or style | undefined (dark gray) | The background color for the whole Snackbar. | | backgroundImage | image location | undefined (without image) | The background image, (this replace the color) for the whole Snackbar. | | fontFamily | string | undefined | [Android only] The basename of a .ttf font from assets/fonts/ (see setup guide and example app, remember to react-native link after). | | rtl | boolean | false | [Android only, API 17+] Whether the Snackbar should render right-to-left (requires android:supportsRtl="true", see setup guide and example app). | | action | object (described below) | undefined (no button) | Optional config for the action button (described below). |

Where duration can be one of the following (timing may vary based on device):

  • Snackbar.LENGTH_SHORT (just over a second)
  • Snackbar.LENGTH_LONG (about three seconds)
  • Snackbar.LENGTH_INDEFINITE (stays on screen until dismissed, replaced, or action button is tapped)

Where position can be one of the following (timing may vary based on device):

  • Snackbar.POSITION_TOP (Display snackbar on top)
  • Snackbar.POSITION_BOTTOM (Display snackbar on bottom)

Where backgroundImage can be one of the following formats:

  • JPG
  • PNG
  • SVG

Note: the text will ellipsize after 2 lines of text on most platforms. See #110 if you need to display more lines.

The optional action object can contain the following options:

| Key | Data type | Default value? | Description | | ----------- | ------------------- | ------------------------------------------ | --------------------------------------------- | | text | string | Required. | The button text. | | textColor | string or style | 'white' | The color of the button text. | | onPress | function | undefined (Snackbar is simply dismissed) | A callback for when the user taps the button. |

Deprecation note: The old keys title and color have been replaced by text and textColor for consistency. The old keys will continue to work for now but are deprecated and may be removed at any time.

Snackbar.dismiss()

Dismisses any existing Snackbars.

Troubleshooting

Compiling [Android]

If you have issues compiling for Android after linking this library, please try updating your Gradle and Android configs to the latest versions. For example:

In your android/build.gradle:

  • com.android.tools.build:gradle:3.4.1 (or higher)

In your android/app/build.gradle:

  • compileSdkVersion 28 (or higher)
  • buildToolsVersion "28.0.3" (or higher)

Compiling [iOS]

Make sure your Deployment Target is iOS 9.0 or above.

Testing changes

Just run

  1. yarn install in the root.
  2. cd example/
  3. yarn run:android this build the package and sync with the example project.

Note: You should run yarn run:android to update changes in example project.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Authors

Thanks to cooperka by the guidelines react-native-snackbar

  • Celiz Matias - Development Manager / Support Manager - G33N See also the list of contributors who participated in this project.