fix login screen, get android working

This commit is contained in:
Hailey
2024-06-23 03:14:12 -07:00
parent 5be880305f
commit 1bf1c4d8e6
4 changed files with 14 additions and 20 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
import React from 'react'
import {KeyboardAvoidingView} from 'react-native'
import {View} from 'react-native'
import {LayoutAnimationConfig} from 'react-native-reanimated'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -163,7 +163,7 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => {
}
return (
<KeyboardAvoidingView testID="signIn" behavior="padding" style={a.flex_1}>
<View testID="signIn" behavior="padding" style={a.flex_1}>
<LoggedOutLayout
leadin=""
title={title}
@@ -173,6 +173,6 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => {
<ScreenTransition key={currentForm}>{content}</ScreenTransition>
</LayoutAnimationConfig>
</LoggedOutLayout>
</KeyboardAvoidingView>
</View>
)
}