import { Image } from 'expo-image'; import * as React from 'react'; import { Dimensions, ScrollView, StyleSheet, Text, View } from 'react-native'; import Button from '../../components/Button'; const WINDOW_DIMENSIONS = Dimensions.get('window'); const IMAGE_MARGIN = 15; const IMAGE_WIDTH = (WINDOW_DIMENSIONS.width - 2 * IMAGE_MARGIN) * WINDOW_DIMENSIONS.scale; export default function ImageBlurhashScreen() { const [enabled, setEnabled] = React.useState(true); const toggleLiveTextInteraction = React.useCallback(() => { setEnabled(!enabled); }, [enabled]); return ( Live Text interaction is not supported on the simulator!