aboutsummaryrefslogtreecommitdiff
path: root/src/screens/Login.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/Login.tsx')
-rw-r--r--src/screens/Login.tsx19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/screens/Login.tsx b/src/screens/Login.tsx
index 2b4a10dc..e7778f1d 100644
--- a/src/screens/Login.tsx
+++ b/src/screens/Login.tsx
@@ -87,11 +87,15 @@ const Login = ({navigation}: LoginProps) => {
}
};
+ /*
+ Handler for the submit button on the Username keyboard
+ */
const handleUsernameSubmit = () => {
- setData({
- ...data,
- focusPasswordInput: true,
- });
+ // setData({
+ // ...data,
+ // focusPasswordInput: true,
+ // });
+ Alert.alert("Coming soon 🚧")
};
return (
@@ -164,13 +168,6 @@ const Login = ({navigation}: LoginProps) => {
</LinearGradient>
</View>
</>
- // <View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
- // <Text style={{fontSize: 18}}>Welcome to Tagg! Login page goes here.</Text>
- // <Button
- // title="Register"
- // onPress={() => navigation.navigate('Registration')}
- // />
- // </View>
);
};