Skip to content

Instantly share code, notes, and snippets.

@webmasterdevlin
Created January 25, 2020 20:01
Show Gist options
  • Save webmasterdevlin/99ec7a75fa6c7aa210940485d4d7a7a7 to your computer and use it in GitHub Desktop.
Save webmasterdevlin/99ec7a75fa6c7aa210940485d4d7a7a7 to your computer and use it in GitHub Desktop.
import React from 'react';
import { View, Text } from 'react-native'
import { Button } from 'react-native-paper';
const LoginScreen = () => {
return (<View>
<Text>Hello LoginScreen</Text>
<Text>Hello LoginScreen</Text>
<Text>Hello LoginScreen</Text>
<Button icon="camera" mode="contained" onPress={() => console.log('Pressed')}>
Press me
</Button>
</View>)
};
export default LoginScreen;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment