Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 280 Bytes

File metadata and controls

27 lines (15 loc) · 280 Bytes

Toast

Usage

duration:

Toast.SHORT   //0
Toast.LONG    //1 
import { Toast } from 'react-native-jjkit'

<touchableView onPress={()=>{
    Toast.show("mymessage",Toast.SHORT)
}} 
 />