Skip to content
Docs
Components
Image

Image

Wrapper around Image component from react-native, it accepts every props from react native Image component.

Import

import { Image } from "react-native-ficus-ui";

Usage

EDITABLE EXAMPLE
<Image
  h={200}
  w={300}
  borderRadius={10}
  source={{
    uri:
      'https://www.picturethisai.com/wiki-image/1080/153400456440184865.jpeg',
  }}
/>

Props

Extends every Box and from react native Image component : https://reactnative.dev/docs/image#props (opens in a new tab)