import { Image, ImageProps } from 'expo-image'; import { useState } from 'react'; import { StyleSheet, View, Text } from 'react-native'; import Button from '../../components/Button'; import { Colors } from '../../constants'; export default function ImagePriorityScreen() { const [id, setId] = useState(0); const defaultProps: Partial = { style: styles.image, contentFit: 'cover', cachePolicy: 'none', }; return ( LOW NORMAL HIGH