We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import React, { Component } from 'react'; import { StyleSheet, } from 'react-native'; import { Router, Scene } from 'react-native-router-flux';
import ScarletScreen from './app/ScarletScreen'; import GrayScreen from './app/GrayScreen';
const App = () => { return (
<Scene key="scarlet" Component={ScarletScreen} title="Scarlet" initial /> <Scene key="gray" Component={GrayScreen} title="Gray" /> </Scene> </Router> );
}
const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, },
}); export default App;
The text was updated successfully, but these errors were encountered:
It is component with a lowercased c
Sorry, something went wrong.
it' not work
Show you ScarletScreen component code please
No branches or pull requests
import React, { Component } from 'react';
import {
StyleSheet,
} from 'react-native';
import { Router, Scene } from 'react-native-router-flux';
import ScarletScreen from './app/ScarletScreen';
import GrayScreen from './app/GrayScreen';
const App = () => {
return (
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
});
export default App;
The text was updated successfully, but these errors were encountered: