import React from 'react'; import { View, Text, Image, TouchableOpacity, ScrollView, SafeAreaView, StatusBar } from 'react-native'; import { Feather, FontAwesome5 } from '@expo/vector-icons'; import { useLocalSearchParams, router } from 'expo-router'; export default function RecipeDetailScreen() { const { title, image } = useLocalSearchParams(); const recipeTitle = title || "Pad Kra Pao Moo Sab with Eggs"; const recipeImage = typeof image === 'string' ? image : "/placeholder.svg?height=400&width=400&query=thai basil stir fry with egg and rice"; return ( {/* Header with back and share buttons */} router.back()} > {/* Recipe Image */} {/* Recipe Title and Description */} {recipeTitle} Pad kra pao, also written as pad gaprao, is a popular Thai stir fry of ground meat and holy basil. {/* Recipe Info */} Skills Easy Time 30 Mins Ingredients 10+ Calories 300 kCal {/* Ingredients */} Ingredients {/* Nutrition Info */} 0 /32g Fat 0 /32g Fiber 0 /32g Protein 0 /32g Carbs {/* Bottom Spacing */} {/* Cook Button */} Let's Cook! ); }