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
|
Acesse a conta
|
||||||
</Heading>
|
</Heading>
|
||||||
|
|
||||||
<Input placeholder="E-mail" />
|
<Input
|
||||||
<Input placeholder="Senha" />
|
placeholder="E-mail"
|
||||||
|
keyboardType="email-address"
|
||||||
|
autoCapitalize="none"
|
||||||
|
autoCorrect={false}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Input
|
||||||
|
placeholder="Senha"
|
||||||
|
autoCapitalize="none"
|
||||||
|
secureTextEntry
|
||||||
|
/>
|
||||||
</Center>
|
</Center>
|
||||||
</VStack>
|
</VStack>
|
||||||
</VStack>
|
</VStack>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue