Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 296 Bytes

Toast.md

File metadata and controls

23 lines (18 loc) · 296 Bytes

Toast

使用

...
import {Toast} from 'material-elements';
...

showToast=()=>{
   this.toast && this.toast.show('message',Toast.SHORT)
}

render(){
    return (
        <View>
        <Toast ref={ref=>this.toast=ref}/>
</View>
    )
}

duration可取Toast.LONG或者Toast.SHORT