fix: adjust input type
This commit is contained in:
parent
b1c4f57786
commit
cb87e0c37c
1 changed files with 12 additions and 2 deletions
|
|
@ -29,8 +29,18 @@ export function SignIn() {
|
|||
Acesse a conta
|
||||
</Heading>
|
||||
|
||||
<Input placeholder="E-mail" />
|
||||
<Input placeholder="Senha" />
|
||||
<Input
|
||||
placeholder="E-mail"
|
||||
keyboardType="email-address"
|
||||
autoCapitalize="none"
|
||||
autoCorrect={false}
|
||||
/>
|
||||
|
||||
<Input
|
||||
placeholder="Senha"
|
||||
autoCapitalize="none"
|
||||
secureTextEntry
|
||||
/>
|
||||
</Center>
|
||||
</VStack>
|
||||
</VStack>
|
||||
|
|
|
|||
Loading…
Reference in a new issue