Skip to content

Instantly share code, notes, and snippets.

@mehulgecg
Created April 17, 2018 07:14
Show Gist options
  • Select an option

  • Save mehulgecg/5d93223a1b09e448887f38a6fdce74f2 to your computer and use it in GitHub Desktop.

Select an option

Save mehulgecg/5d93223a1b09e448887f38a6fdce74f2 to your computer and use it in GitHub Desktop.
Detail Screen
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