BrixCafe/app/screens/auth/SignInScreen.tsx
Med Kamel bf20e7e3d7 Initial commit
Generated by create-expo-app 3.3.0.
2025-04-15 03:42:47 +01:00

35 lines
724 B
TypeScript

import React from 'react';
import { View, Text, StyleSheet, Button } from 'react-native';
import { router } from 'expo-router';
const SignInScreen = () => {
return (
<View style={styles.container}>
<Text style={styles.welcomeText}>Sign In Screen</Text>
<Button
title="Back to Opening Screen"
onPress={() => router.back()}
/>
</View>
);
};
// Styles
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#FFFFFF',
alignItems: 'center',
justifyContent: 'center',
paddingHorizontal: 20,
},
welcomeText: {
fontSize: 24,
fontWeight: 'bold',
color: '#000000',
marginBottom: 20,
},
});
export default SignInScreen;