feat: create base sign in screen
This commit is contained in:
parent
16a59cae61
commit
10f6604950
2 changed files with 21 additions and 4 deletions
7
App.tsx
7
App.tsx
|
|
@ -1,10 +1,11 @@
|
||||||
import { StatusBar } from 'react-native';
|
import { StatusBar } from 'react-native';
|
||||||
import { useFonts, Roboto_400Regular, Roboto_700Bold } from '@expo-google-fonts/roboto';
|
import { useFonts, Roboto_400Regular, Roboto_700Bold } from '@expo-google-fonts/roboto';
|
||||||
import { Center, GluestackUIProvider, Text } from '@gluestack-ui/themed';
|
import { GluestackUIProvider } from '@gluestack-ui/themed';
|
||||||
|
|
||||||
import { Loading } from '@components/Loading';
|
import { Loading } from '@components/Loading';
|
||||||
|
|
||||||
import { config } from './config/gluestack-ui.config';
|
import { config } from './config/gluestack-ui.config';
|
||||||
|
import { SignIn } from '@screens/SignIn';
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
const [fontsLoaded] = useFonts({
|
const [fontsLoaded] = useFonts({
|
||||||
|
|
@ -15,9 +16,7 @@ export default function App() {
|
||||||
return (
|
return (
|
||||||
<GluestackUIProvider config={config}>
|
<GluestackUIProvider config={config}>
|
||||||
{fontsLoaded ? (
|
{fontsLoaded ? (
|
||||||
<Center flex={1} bg="$gray700">
|
<SignIn />
|
||||||
<Text color="white" fontSize={34}>Ignite Gym</Text>
|
|
||||||
</Center>
|
|
||||||
) : (
|
) : (
|
||||||
<Loading />
|
<Loading />
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
18
src/screens/SignIn.tsx
Normal file
18
src/screens/SignIn.tsx
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
import { Image, VStack } from "@gluestack-ui/themed";
|
||||||
|
|
||||||
|
import BackgroundImg from '@assets/background.png';
|
||||||
|
|
||||||
|
export function SignIn() {
|
||||||
|
return (
|
||||||
|
<VStack flex={1} bg="$gray700">
|
||||||
|
<Image
|
||||||
|
source={BackgroundImg}
|
||||||
|
defaultSource={BackgroundImg}
|
||||||
|
alt="Pessoas treinando"
|
||||||
|
position="absolute"
|
||||||
|
w="$full"
|
||||||
|
h={624}
|
||||||
|
/>
|
||||||
|
</VStack>
|
||||||
|
)
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue