Initial commit

This commit is contained in:
Patryk
2025-04-07 21:26:22 +02:00
parent a18dbba5be
commit 9e215d6203
11 changed files with 1180 additions and 25 deletions

21
app/(tabs)/formScreen.tsx Normal file
View 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',
},
});