Skip to content

Commit

Permalink
I love react native
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Nov 20, 2023
1 parent 79817e7 commit 2f387c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/auth/signup.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Link, router } from 'expo-router';
import React, { useState } from 'react';
import { Alert, Text, View, StyleSheet } from 'react-native';
import { Alert, Text, View, StyleSheet, SafeAreaView } from 'react-native';
import validator from 'validator';

import StyledButton from '../../components/StyledButton';
Expand Down Expand Up @@ -94,7 +94,7 @@ function SignUpScreen() {
};

return (
<View style={[globalStyles.authContainer, styles.flex]}>
<SafeAreaView style={[globalStyles.authContainer, styles.flex]}>
<View>
<Text style={[globalStyles.h4, styles.title]}>
Read stories from young creators
Expand Down Expand Up @@ -164,7 +164,7 @@ function SignUpScreen() {
</Link>
</Text>
</View>
</View>
</SafeAreaView>
);
}

Expand All @@ -187,7 +187,7 @@ const styles = StyleSheet.create({
marginTop: 16,
},
title: {
marginTop: 65,
paddingTop: 64,
marginBottom: 23,
},
icon: {
Expand Down

0 comments on commit 2f387c4

Please sign in to comment.