mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-06-13 04:41:01 +00:00
auto-commit for 5b60421b-a413-4fb8-94e7-6f5c46dbdfbe
This commit is contained in:
@@ -138,10 +138,18 @@ export default function AuthScreen({ navigation }: any) {
|
||||
</View>
|
||||
)}
|
||||
|
||||
<TouchableOpacity style={styles.authButton} onPress={handleAuth}>
|
||||
<Text style={styles.authButtonText}>
|
||||
{isSignIn ? 'Sign In' : 'Create Account'}
|
||||
</Text>
|
||||
<TouchableOpacity
|
||||
style={[styles.authButton, loading && styles.authButtonDisabled]}
|
||||
onPress={handleAuth}
|
||||
disabled={loading}
|
||||
>
|
||||
{loading ? (
|
||||
<ActivityIndicator color="#FFF" />
|
||||
) : (
|
||||
<Text style={styles.authButtonText}>
|
||||
{isSignIn ? 'Sign In' : 'Create Account'}
|
||||
</Text>
|
||||
)}
|
||||
</TouchableOpacity>
|
||||
|
||||
<TouchableOpacity
|
||||
|
||||
Reference in New Issue
Block a user