Initial commit
This commit is contained in:
21
app/(tabs)/formScreen.tsx
Normal file
21
app/(tabs)/formScreen.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Text, View, StyleSheet } from 'react-native';
|
||||
|
||||
export default function FormScreen() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text style={styles.text}>Form</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: '#25292e',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
},
|
||||
text: {
|
||||
color: '#fff',
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user