react-native-simple-toast for Web.
react-native-web-simple-toast allow you to using react-native-simple-toast seamlessly on the web.
react-native-web-simple-toast simulate iOS style, and don't support viewControllerBlacklist params.
npm i react-native-web-simple-toastindex.web.{tsx,jsx}
import `react-native-simple-toast/dist/index.css`
webpack.config.js
module.exports = {
...
resolve: [
alias: [
...
'react-native': 'react-native-web',
+ /* set alias from react-native-simple-toast to react-native-web-simple-toast */
+ 'react-native-simple-toast': 'react-native-web-simple-toast'
]
]
}MIT