import React, { useState } from 'react'; import { View, Text } from 'react-native'; import { getStyles } from './orderDeliveredScreen.styles'; import { Header, RatingStars, PrimaryButton } from '@components'; import { useAppTheme } from '@theme'; export const OrderDeliveredScreen: React.FC = () => { const { colors } = useAppTheme(); const styles = getStyles(colors); const [rating, setRating] = useState(0); return (
{}} /> 🎉 Your order has been delivered! How was your experience? {}} disabled={rating === 0} style={{ marginTop: 32 }} /> ); };