Tell us which versions you are using:
that the router could be accessed by my app!
My code
import React from 'react';
import {Router, Scene, root } from 'react-native-router-flux';
import FormLogin from './Components/FormLogin';
import FormCadastro from './Components/FormCadastro';
export default props => (
);
There's no code to watch actually.
Moreover, the error message is clear enough, there should be one wrapper inside of your Router like this :
<Router>
<Stack key='root'>
<Scene />
<Scene />
<Scene />
<Scene />
<Scene />
</Stack>
</Router>
Check the Example project for more infos
Most helpful comment
There's no code to watch actually.
Moreover, the error message is clear enough, there should be one wrapper inside of your Router like this :
Check the Example project for more infos