Code Monkey home page Code Monkey logo

react-native-animated-toast's Introduction

react-native-animated-toast

Animated Toast Notification for React Native

Installation & Usage

Install NPM package

npm install react-native-animated-toast

Import the Notification Component into your project and mount the component. You can style your component by passing a style object.

import AnimatedNotification from 'react-native-animated-toast';

    const style = {
      width: '95%',
      position: 'absolute',
      marginHorizontal: 10,
      height: 40,
      justifyContent: 'center',
      alignItems: 'center',
      borderRadius: 25,
      backgroundColor: '#018ad1',
      zIndex: 3
    };

<AnimatedNotification style={style} visible={this.props.visible}>
  <Text>A Test Message</Text>
</AnimatedNotification>

Props

  • Note: Unlike most Notification Libs you pass a component in as children to render the message. This gives the user full control over styling / adding additional functionaltiy to the Notification
Name Default Type Description
topPosition 40 Number The Top Position for the Component to Animate to
visible false Bool The visibility of Notification
hideDuration 2000 Number The duration (ms) the Notification is visible before auto hiding
children NA (Required) Node Children Components to render usually a Element

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.