This package has been deprecated

Author message:

WARNING: This project has been renamed to @rimiti/react-native-toastify. Install using new-package-name instead.

react-native-toastify

0.2.2 • Public • Published

react-native-toastify

Dependencies Dependencies Code Climate score Codecov Code Climate coverage Node.js version NPM version Build Status Security version MIT License PRs Welcome

Description

React Native cross-plateform (iOS/Android) toast notification component highly customizable.

Install

$ npm install react-native-toastify --save

Demo

Examples

import React, {Component} from 'react';
import {Button, View} from 'react-native';
import Toast from 'react-native-toastify';

export default class Layout extends Component {

    constructor(props) {
        super(props)
    }

    render() {
        return (
            <View style={{paddingTop: 300}}>
                <Button	onPress={() => this.toastify.show('Hello World !', 1000)}	title="Demo" />
                <Toast ref={(c) => this.toastify = c} />
            </View>
        )
    }
}

Documentation

Props                     Type                  Description                                                 Usage
----------------------------------------------------------------------------------------------------------------------
style                     {View}                Style definitions for the global element                    (optional)
position                  {top, center, bottom} Position of toast.                                          (optional)
textStyle                 {Text}                Style definitions for the toast text element                (optional)
positionValue             {number}              Position value of toast                                     (optional)
fadeInDuration            {number}              Duration of fade in                                         (optional)
fadeOutDuration           {number}              Duration of fade out                                        (optional)
opacity                   {number}              Opacity value                                               (optional)
durationShort             {number}              Show duration                                               (optional)
defaultCloseDelay         {number}              Close delay duration                                        (optional)
end                       {number}              End value of animation                                      (optional)

Scripts

Run using npm run

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i react-native-toastify

      Weekly Downloads

      45

      Version

      0.2.2

      License

      MIT

      Last publish

      Collaborators

      • rimiti