mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +08:00
Do not autocapitalize password fields
This commit is contained in:
parent
511f293ff1
commit
12e3d29822
2 changed files with 2 additions and 0 deletions
|
@ -59,6 +59,7 @@ export default function Login() {
|
||||||
placeholderTextColor="white"
|
placeholderTextColor="white"
|
||||||
secureTextEntry={true}
|
secureTextEntry={true}
|
||||||
value={creds.password}
|
value={creds.password}
|
||||||
|
autoCapitalize={"none"}
|
||||||
onChange={(
|
onChange={(
|
||||||
e: NativeSyntheticEvent<TextInputChangeEventData>
|
e: NativeSyntheticEvent<TextInputChangeEventData>
|
||||||
): void => {
|
): void => {
|
||||||
|
|
|
@ -113,6 +113,7 @@ export default function Register() {
|
||||||
placeholderTextColor={colors.text_default}
|
placeholderTextColor={colors.text_default}
|
||||||
secureTextEntry={true}
|
secureTextEntry={true}
|
||||||
value={user.password}
|
value={user.password}
|
||||||
|
autoCapitalize={"none"}
|
||||||
onChange={(
|
onChange={(
|
||||||
e: NativeSyntheticEvent<TextInputChangeEventData>
|
e: NativeSyntheticEvent<TextInputChangeEventData>
|
||||||
): void => {
|
): void => {
|
||||||
|
|
Loading…
Reference in a new issue