Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import React from 'react';
  2. import { View, StyleSheet, Text } from 'react-native';
  3.  
  4. export default class ScreenOne extends React.Component {
  5.  
  6. static navigationOptions = {
  7.  
  8. };
  9.  
  10. render() {
  11. return (
  12. <View style={styles.container}>
  13. <Text>Screen One</Text>
  14. </View>
  15. );
  16. }
  17. }
  18.  
  19. const styles = StyleSheet.create({
  20. container: {
  21. flex: 1,
  22. alignItems: 'center',
  23. justifyContent: 'center',
  24. },
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement