style: added new screens and designs

This commit is contained in:
Cron1cle
2025-10-06 01:16:10 +02:00
parent badf355a2d
commit 8fb418c6f3
12 changed files with 718 additions and 141 deletions

28
app/participant.tsx Normal file
View File

@@ -0,0 +1,28 @@
import { View, Image, Text } from "react-native";
import styles from "@/app/stackStyles/participantStyles";
export default function ParticipantScreen() {
return (
<View style={styles.mainContainer}>
<View style={styles.handleBar} />
<Text style={styles.participantName}>Calvin Ogara</Text>
<View style={styles.participantInfoSection}>
<Text style={styles.participantInfo}>Single</Text>
<View style={styles.dot} />
<Text style={styles.participantInfo}>24 Jahre</Text>
<View style={styles.dot} />
<Text style={styles.participantInfo}>Köln</Text>
</View>
<Image
source={{
uri: "https://www.fernseh-puls.com/wp-content/uploads/are-you-the-one-calvin-o-im-steckbrief-wir-stellen-euch-den-kandidaten-vor.jpg",
}}
style={styles.participantImage}
/>
<View style={styles.performedShowsSection}>
<Text style={styles.performedShowsTitle}>Auftritte:</Text>
</View>
</View>
);
}