filter, haptik, background

This commit is contained in:
DevOFVictory
2025-10-28 22:42:19 +01:00
parent 6b39579c75
commit 21cd6c3241
8 changed files with 145 additions and 84 deletions

View File

@@ -1,9 +1,9 @@
import { View, Text, StyleSheet } from "react-native";
import { StyleSheet, Text, View } from "react-native";
type ParticipantDetailsProps = {
description: string;
concept: string;
genres: string;
genres: string[];
streamingService: string;
};
@@ -20,7 +20,7 @@ const ParticipantDetails = ({
<Text style={styles.detailTitle}>Konzept:</Text>
<Text style={styles.detailLabel}>{concept}</Text>
<Text style={styles.detailTitle}>Genres:</Text>
<Text style={styles.detailLabel}>{genres}</Text>
<Text style={styles.detailLabel}>{genres.join(', ')}</Text>
<Text style={styles.detailTitle}>Produktion:</Text>
<Text style={styles.detailLabel}>{streamingService}</Text>
</View>