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

@simdanonline/react-native-toast

v1.0.93

Published

Customisable toast package for react native apps

Downloads

83

Readme

@simdanonline/react-native-toast

A custom toast notification component for React Native (Android & iOS).

Features

  • Simple and easy to use
  • Customisable appearance, duration, position, and styles
  • Compatible with both Android and iOS
  • Allows passing custom components
  • Global toast function for easy use anywhere in the application
  • Hide specific toasts or all toasts programmatically

Installation

To install the package, use npm or yarn:

npm install @simdanonline/react-native-toast

or

yarn add @simdanonline/react-native-toast

Usage

1. Wrap your application with the ToastProvider

Wrap your main App component with the ToastProvider to provide the context to the entire application.

// App.js
import React from 'react';
import { ToastProvider } from '@simdanonline/react-native-toast';
import MainScreen from './MainScreen';

const App = () => {
  return (
    <ToastProvider>
      <MainScreen />
    </ToastProvider>
  );
};

export default App;

2. Displaying Toasts

Using the Hook

To display a toast from within a React component, use the useToast hook provided by the library.

Example

import React, { useState } from 'react';
import { Button, View } from 'react-native';
import { useToast } from '@simdanonline/react-native-toast';

const MyComponent = () => {
  const { showToast, hideAllToast, hideToast } = useToast();
  const [toastOneId, setToastOneId] = useState();

  return (
    <View>
      <Button
        title="Show Toast Message"
        onPress={() => {
          const id = showToast({
            message: 'This is a toast message!',
            duration: 3000,
            position: 'bottom',
          });
          setToastOneId(id);
        }}
      />
      <Button
        title="Show Custom Toast"
        onPress={() =>
          showToast({
            content: (
              <View>
                <Text style={{ color: 'yellow', fontSize: 16 }}>This is a custom toast!</Text>
              </View>
            ),
            duration: 3000,
            position: 'top',
          })
        }
      />
      
      <Button
        title="Hide Toast One"
        onPress={() => {
          hideToast(toastOneId);
        }}
      />
      <Button
        title="Hide All Toasts"
        onPress={() => hideAllToast()}
      />
    </View>
  );
};

export default MyComponent;

3. Global Toast Function

You can use the global showGlobalToast, removeAllToasts, and removeToast functions to display or hide toasts from outside React components, such as in non-React utility functions or services.

Setup

Make sure that ToastProvider is used in your application to initialize the global toast functions automatically.

Example Usage

import { showGlobalToast, removeAllToasts, removeToast } from '@simdanonline/react-native-toast';

// Call the global toast function from anywhere
showGlobalToast({
  message: 'This is a global toast!',
  duration: 3000,
  position: 'bottom',
});

// Hide all toasts
removeAllToasts();

// Hide a specific toast by key
const toastKey = 'unique-toast-key'; // Replace with the actual toast key
removeToast(toastKey);

Customizing Toast

You can customize the toast notification's container and text styles by passing containerStyle and textStyle props.

// CustomToastScreen.js
import React from 'react';
import { View, Button, StyleSheet, Text } from 'react-native';
import { useToast } from '@simdanonline/react-native-toast';

const CustomToastScreen = () => {
  const { showToast, hideAllToast } = useToast();

  return (
    <View style={styles.container}>
      <Button
        title="Show Custom Toast"
        onPress={() =>
          showToast({
            content: (
              <View>
                <Text style={{ color: 'yellow', fontSize: 16 }}>This is a custom toast!</Text>
              </View>
            ),
            duration: 3000,
            position: 'top',
            containerStyle: styles.customContainer,
            textStyle: styles.customText,
            status: 'warning',
          })
        }
      />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  customContainer: {
    backgroundColor: 'blue',
    padding: 20,
    borderRadius: 10,
  },
  customText: {
    color: 'yellow',
    fontSize: 16,
  },
});

export default CustomToastScreen;

API

ToastProvider

A context provider component that should wrap your application to provide toast functionality.

Props

  • children: The components that will have access to the toast context.

useToast

A hook that returns the showToast, hideToast, and hideAllToast functions.

showToast

Function to show a toast notification.

hideToast

Function to hide a toast notification, using a unique key.

hideAllToast

Function to hide all toast notifications.

Global Functions

showGlobalToast

Function to show a toast notification from anywhere in the application.

removeAllToasts

Function to hide all toast notifications globally.

removeToast

Function to hide a specific toast notification globally, using a unique key.

Props

| Prop | Type | Default | Description | | ---------------- | --------------------------------------------------------- | ----------- | -------------------------------------------------------------- | | message | string | null | The message to display in the toast. | | content | ReactNode | null | Custom content to display in the toast. | | duration | number | 2000 | Duration for which the toast is visible. | | containerStyle | ViewStyle | null | Custom styles for the toast container. | | textStyle | TextStyle | null | Custom styles for the toast message. | | position | 'bottom' \| 'top' | 'bottom' | Position of the toast on the screen. | | status | 'default' \| 'error' \| 'warning' \| 'success' \| 'info'| 'default' | Status type of the toast for different background colors. |

Example
// MainScreen.js
import React from 'react';
import { View, Button, StyleSheet, Text } from 'react-native';
import { useToast } from '@simdanonline/react-native-toast';

const MainScreen = () => {
  const { showToast } = useToast();

  return (
    <View style={styles.container}>
      <Button
        title="Show Toast Message"
        onPress={() =>
          showToast({
            message: 'This is a toast message!',
            duration: 3000,
            position: 'bottom',
          })
        }
      />
      <Button
        title="Show Custom Toast"
        onPress={() =>
          showToast({
            content: (
              <View>
                <Text style={{ color: 'yellow', fontSize: 16 }}>This is a custom toast!</Text>
              </View>
            ),
            duration: 3000,
            position: 'top',
          })
        }
      />
    </View>
  );
};

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

export default MainScreen;

License

MIT © Similoluwa Odeyemi