React Native Snackbar

February 27, 2026 ยท View on GitHub

Build status npm downloads npm version Latest GitHub tag

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

Snackbar screenshot

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,
});

Or, to include an action button:

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

Installation

For older apps, use version 2 of this library. The latest version 3 requires React Native >= 0.72 with New Architecture enabled.

Steps:

  1. Install:

    • Using npm: npm install react-native-snackbar --save
    • Using Yarn: yarn add react-native-snackbar
  2. Install CocoaPods dependencies for iOS: cd ios && pod install && cd ..

  3. Import it in your JS:

    import { Snackbar } from 'react-native-snackbar';
    

Usage

Snackbar.show(options)

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

KeyData typeDefault value?Description
textstringRequired.The message to show.
durationSee belowSnackbar.LENGTH_SHORTHow long to display the Snackbar.
numberOfLinesnumber2The max number of text lines to allow before ellipsizing.
textAlignCenterbooleanfalseWhether to center the text. Currently broken on iOS.
marginBottomnumber0Margin from bottom.
textColorstring or style'white'The color of the message text.
backgroundColorstring or styleundefined (dark gray)The background color for the whole Snackbar.
fontFamilystringundefinedThe basename of a .ttf font from assets/fonts/ (see setup guide and example app, remember to react-native link after).
rtlbooleanfalse[Requires API 17+ if Android] Whether the Snackbar should render right-to-left (requires android:supportsRtl="true", see setup guide and example app).
actionobject (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)

The optional action object can contain the following options:

KeyData typeDefault value?Description
textstringRequired.The button text.
textColorstring or style'white'The color of the button text.
onPressfunctionundefined (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.

Advanced usage

Snackbar events

You can listen for Snackbar visibility, for example:

  useEffect(() => {
    const eventHandler = (payload) => console.log(`Snackbar change: ${payload.event}`);
    const eventListener = Snackbar.onSnackbarVisibility(eventHandler);
    return () => eventListener.remove();
  });

Where event is one of the following numbers:

KeyData typeValueDescription
Snackbar.DISMISS_EVENT_SWIPEnumber0Indicates that the Snackbar was dismissed via a swipe.
Snackbar.DISMISS_EVENT_ACTIONnumber1Indicates that the Snackbar was dismissed via an action click.
Snackbar.DISMISS_EVENT_TIMEOUTnumber2Indicates that the Snackbar was dismissed via a timeout.
Snackbar.DISMISS_EVENT_MANUALnumber3Indicates that the Snackbar was dismissed via Snackbar.dismiss() call.
Snackbar.DISMISS_EVENT_CONSECUTIVEnumber4Indicates that the Snackbar was dismissed due to a new Snackbar being shown.
Snackbar.SHOW_EVENTnumber5Indicates that Snackbar appeared.

Mocking via Jest

This package uses NativeModules, which jest does not have access to.

You can use the provided mocks in your jest.setup.js:

import mockSnackbar from 'react-native-snackbar/jest/snackbar-mock.js'

jest.mock('react-native-snackbar', () => mockSnackbar);

Troubleshooting

Snackbar not appearing [Android]

The Snackbar is designed to attach to whatever view is on top of your screen when show is called. If that view happens to be a temporary alert modal or some other view that goes away, you'll never see the Snackbar.

A workaround in some cases is to use setTimeout to show the Snackbar a few seconds later after the modal is gone. See issue #28 for further discussion. If you want to submit a PR to improve the view-finding logic, feel free.

Undefined import

If you see errors similar to Cannot read property 'LENGTH_LONG' of undefined or Undefined not an object (NativeModules.RNSnackbar), please refer to issue #43 for help.

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.

Local development

We welcome contributions. See CONTRIBUTING.md for setup and advice.