> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shipmobilefast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Images

> Images component

We are using `expo-image` for the images.

You can use it like below:

```tsx theme={null}
    import { Image } from 'expo-image';
    const App = () => {
        return (
            <Image source={{ uri: 'https://example.com/image.png' }} />
        );
    }
```

For more advanced usage, you can use [Blurhash](https://github.com/mrousavy/react-native-blurhash).

For Expo-Image Documentation: [Expo-Image](https://docs.expo.dev/versions/latest/sdk/image/)
