Skip to content

Commit

Permalink
Add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Loule95450 committed Feb 28, 2024
1 parent 0376cf2 commit 10083e4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
Binary file added assets/kayu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 18 additions & 3 deletions src/screens/login/LoginScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
import React from 'react';
import {SafeAreaView, Text} from 'react-native';
import {Image, SafeAreaView, StyleSheet, Text, View} from 'react-native';

const LoginScreen = () => {
return (
<SafeAreaView>
<Text>LoginScreen</Text>
<SafeAreaView style={styles.screen}>
<View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
<Image
source={require('../../../assets/kayu.png')}
style={{width: 200, height: 200}}
/>
</View>
<View style={{flex: 3}}>
<Text>Form</Text>
</View>
</SafeAreaView>
);
};

const styles = StyleSheet.create({
screen: {
flex: 1,
backgroundColor: 'white',
},
});

export default LoginScreen;

0 comments on commit 10083e4

Please sign in to comment.