diff --git a/src/components/Input.tsx b/src/components/Input.tsx new file mode 100644 index 0000000..cff7ba3 --- /dev/null +++ b/src/components/Input.tsx @@ -0,0 +1,17 @@ +import { Input as GSInput, InputField } from "@gluestack-ui/themed"; +import { ComponentProps } from "react"; + +type Props = ComponentProps; + +export function Input({ ...others }: Props) { + return ( + + + + ) +} diff --git a/src/screens/SignIn.tsx b/src/screens/SignIn.tsx index 312f00b..8e26d76 100644 --- a/src/screens/SignIn.tsx +++ b/src/screens/SignIn.tsx @@ -1,7 +1,8 @@ -import { Center, Image, Text, VStack } from "@gluestack-ui/themed"; +import { Center, Heading, Image, Text, VStack } from "@gluestack-ui/themed"; import BackgroundImg from '@assets/background.png'; import Logo from '@assets/logo.svg'; +import { Input } from "@components/Input"; export function SignIn() { return ( @@ -15,12 +16,23 @@ export function SignIn() { h={624} /> -
- - - Treine a sua mente e o seu corpo - -
+ +
+ + + Treine a sua mente e o seu corpo + +
+ +
+ + Acesse a conta + + + + +
+
) }