UNPKG

salesflo-rntoast-android

Version:

18 lines (16 loc) 461 B
import React, { Component } from 'react' import { Text, TouchableOpacity, View } from 'react-native' import ToastExample from './ToastExample' export default class App extends Component { render() { return ( <View> <TouchableOpacity onPress={()=> { ToastExample.show('yah Toh Good Hogaya gee :p', ToastExample.LONG); }}> <Text> Click mee To Toast...</Text> </TouchableOpacity> </View> ) } }