Skip to content

Commit

Permalink
LoginView 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
onting committed Aug 15, 2020
1 parent 3f48fc3 commit 26795f1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions compo/loginview.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React from 'react';
import { StyleSheet, Text, View, TextInput, Button, TouchableHighlight, Alert } from 'react-native';
import {hostaddr} from '../config'
import * as SecureStore from 'expo-secure-store';
import {SafeAreaView} from 'react-native-safe-area-context';


export default function LoginView({navigation}) {
Expand Down Expand Up @@ -61,7 +62,7 @@ export default function LoginView({navigation}) {
}

return (
<View style={styles.container}>
<SafeAreaView style={styles.container}>
<View style={{
width: 200,
marginVertical: 100,
Expand Down Expand Up @@ -111,7 +112,7 @@ export default function LoginView({navigation}) {
</Text>
</TouchableHighlight>
</View>
</View>
</SafeAreaView>
);
}

Expand Down

0 comments on commit 26795f1

Please sign in to comment.