Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: you have to press the login button twice (#6633) #6663

Merged
Merged
Changes from 11 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
07d1f6d
fix: you have to press the login button twice (#6633)
tibi77 Jun 21, 2023
40a2a5d
Merge branch 'main' into click-login-twice
tibi77 Jun 30, 2023
df40da4
Dismiss keyboard on login (success)
leotm Jul 5, 2023
bb633fd
Merge branch 'main' into click-login-twice
tibi77 Jul 11, 2023
99bacb2
Merge branch 'main' into click-login-twice
tibi77 Jul 11, 2023
89433dc
Merge branch 'main' into click-login-twice
leotm Jul 18, 2023
b16a35c
Merge branch 'main' into click-login-twice
tibi77 Jul 25, 2023
53d0c98
Merge branch 'main' into click-login-twice
tibi77 Sep 11, 2023
606e7f7
Merge branch 'main' into click-login-twice
tibi77 Sep 12, 2023
d349cf8
Merge branch 'main' into click-login-twice
tibi77 Oct 9, 2023
144f351
Merge branch 'main' into click-login-twice
tibi77 Oct 17, 2023
2bb1793
Merge branch 'main' into click-login-twice
tibi77 Nov 15, 2023
a470aa0
Apply suggestions from code review
tibi77 Nov 15, 2023
2a495cc
Merge branch 'main' into click-login-twice
Cal-L Nov 15, 2023
eca9b80
Merge branch 'main' into click-login-twice
tibi77 Nov 17, 2023
28831f0
Merge branch 'main' into click-login-twice
tibi77 Nov 18, 2023
5c97aa3
Merge branch 'main' into click-login-twice
tibi77 Nov 27, 2023
6b366d8
Merge branch 'main' into click-login-twice
leotm Nov 29, 2023
e9b9a90
Merge branch 'main' into click-login-twice
tibi77 Jan 16, 2024
7b48de2
Merge branch 'main' into click-login-twice
tibi77 Jan 19, 2024
8d86f1f
Merge branch 'main' into click-login-twice
tibi77 Jan 20, 2024
1f207b7
Merge branch 'main' into click-login-twice
tibi77 Jan 24, 2024
1cebff6
Merge branch 'main' into click-login-twice
frankvonhoven Jan 25, 2024
f1da997
Merge branch 'main' into click-login-twice
sethkfman Jan 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/components/Views/Login/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
import {
Alert,
ActivityIndicator,
Keyboard,
Text,
tibi77 marked this conversation as resolved.
Show resolved Hide resolved
View,
SafeAreaView,
Expand Down Expand Up @@ -388,6 +389,8 @@ class Login extends PureComponent {
this.props.selectedAddress,
);

Keyboard.dismiss();

// Get onboarding wizard state
const onboardingWizard = await DefaultPreference.get(ONBOARDING_WIZARD);
if (onboardingWizard) {
Expand Down Expand Up @@ -524,8 +527,9 @@ class Login extends PureComponent {
<ErrorBoundary navigation={this.props.navigation} view="Login">
<SafeAreaView style={styles.mainWrapper}>
<KeyboardAwareScrollView
style={styles.wrapper}
keyboardShouldPersistTaps="handled"
tibi77 marked this conversation as resolved.
Show resolved Hide resolved
resetScrollToCoords={{ x: 0, y: 0 }}
style={styles.wrapper}
>
<View testID={'login'} {...generateTestId(Platform, 'login')}>
<View style={styles.foxWrapper}>
Expand Down
Loading