ignitegym/App.tsx

30 lines
742 B
TypeScript

import { StatusBar } from 'react-native';
import { useFonts, Roboto_400Regular, Roboto_700Bold } from '@expo-google-fonts/roboto';
import { GluestackUIProvider } from '@gluestack-ui/themed';
import { Loading } from '@components/Loading';
import { config } from './config/gluestack-ui.config';
import { SignIn } from '@screens/SignIn';
export default function App() {
const [fontsLoaded] = useFonts({
Roboto_400Regular,
Roboto_700Bold,
});
return (
<GluestackUIProvider config={config}>
{fontsLoaded ? (
<SignIn />
) : (
<Loading />
)}
<StatusBar
barStyle="light-content"
backgroundColor="transparent"
translucent
/>
</GluestackUIProvider>
);
}