import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; export default function DetailsScreen({ route }: any) { const { event } = route.params; return ( {event.name} {new Date(event.date).toLocaleDateString()} {event.description} ); } const styles = StyleSheet.create({ container: { flex: 1, padding: 16 }, title: { fontSize: 24, fontWeight: 'bold', marginBottom: 8 }, date: { fontSize: 14, color: '#666', marginBottom: 16 }, description: { fontSize: 16 }, });