Skip to content

Instantly share code, notes, and snippets.

@Ravenclaw968
Created August 22, 2017 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ravenclaw968/c7640697bda4e86529bad2b058f9ff56 to your computer and use it in GitHub Desktop.
Save Ravenclaw968/c7640697bda4e86529bad2b058f9ff56 to your computer and use it in GitHub Desktop.
import React from 'react';
import {
StyleSheet,
Text,
View,
Image,
TextInput,
Button,
AsyncStorage,
} from 'react-native';
import { StackNavigator } from 'react-navigation';
export default class UserScreen extends React.Component
{
constructor(props)
{
super(props);
}
render()
{
return (
<View style = {{flex: 1, backgroundColor: "#1a237e"}}>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment