Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
beasy-mobile
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
G
beasy-mobile
Commits
cdf2a4fb
You need to sign in or sign up before continuing.
Commit
cdf2a4fb
authored
Sep 06, 2024
by
G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use arrow function to test something about rerenders. not behaving like i had hoped
parent
e239a097
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
UserLoginScreen.tsx
src/screens/UserLoginScreen.tsx
+7
-3
No files found.
src/screens/UserLoginScreen.tsx
View file @
cdf2a4fb
...
...
@@ -95,7 +95,11 @@ const UserLoginScreen: MainStackScreenComponentProps<"userLoginScreen"> = ({ nav
</
Box
>
</
Box
>
<
ContainerBorderTopCurved
>
<
KeyboardAwareScrollView
extraScrollHeight=
{
50
}
>
<
KeyboardAwareScrollView
onKeyboardDidShow=
{
()
=>
{
log
.
debug
(
"Keyboard did show"
);
}
}
>
<
Box
p=
{
"l"
}
paddingTop=
{
"x100"
}
mb=
{
"s"
}
>
<
Box
mb=
{
"l"
}
>
<
Text
fontSize=
{
40
}
fontWeight=
{
"bold"
}
variant=
{
"black"
}
>
...
...
@@ -110,14 +114,14 @@ const UserLoginScreen: MainStackScreenComponentProps<"userLoginScreen"> = ({ nav
// value={email}
autoCorrect=
{
false
}
textContentType=
"emailAddress"
onChangeText=
{
setEmail
}
onChangeText=
{
(
email
)
=>
setEmail
(
email
)
}
/>
<
InputWithTopLabel
label=
"Mot de passe"
secureTextEntry=
{
true
}
textContentType=
"oneTimeCode"
// value={password}
onChangeText=
{
setPassword
}
onChangeText=
{
(
text
)
=>
setPassword
(
text
)
}
/>
</
Box
>
</
Box
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment