Created
April 17, 2018 07:14
-
-
Save mehulgecg/5d93223a1b09e448887f38a6fdce74f2 to your computer and use it in GitHub Desktop.
Detail Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react'; | |
| import { | |
| Text, | |
| View, | |
| StyleSheet | |
| } from 'react-native'; | |
| class DetailScreen extends Component { | |
| render () { | |
| return ( | |
| <View style={styles.container}> | |
| <Text>Detail Screen</Text> | |
| </View> | |
| ); | |
| } | |
| } | |
| const styles = StyleSheet.create({ | |
| container: { | |
| flex: 1, | |
| justifyContent: 'center', | |
| alignItems: 'center' | |
| } | |
| }); | |
| export default DetailScreen; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment