react-native-root-siblings
react-native-root-siblings copied to clipboard
cannot work with [email protected]
return new RootSiblings(<ToastContainer {...options} visible > {message} </ToastContainer>) but in ToastContainer, it cann't work. My react-native:0.59.8, react : 15.6.2.
Need more details
+1, my version
reac-native:0.59.5 react:16.8.3
new RootSiblings( <View style={{ top: 0, right: 0, bottom: 0, left: 0, backgroundColor: 'red', }} />
nothing show in my android screen
i got the answer, react-native-root-siblings should be injected early in root
in index.js
...
// root-siblings should be injected early
import 'react-native-root-siblings'
...