Recall & Review
beginner
What is the React Native
Image component used for?The
Image component displays pictures in your app. It can show images stored locally or loaded from the internet.Click to reveal answer
beginner
How do you load a local image in React Native?
Use
require('./path/to/image.png') inside the source prop of Image. This tells React Native to bundle the image with the app.Click to reveal answer
beginner
How do you load a remote image from the internet in React Native?
Set the
source prop to an object with a uri key, like { uri: 'https://example.com/image.png' }.Click to reveal answer
beginner
Why should you always set
width and height on an Image component?Without width and height, the image might not show or layout correctly. These tell React Native how much space to reserve for the image.
Click to reveal answer
beginner
What is a simple way to make an image accessible in React Native?
Add the
accessibilityLabel prop with a short description of the image. This helps screen readers describe the image to users.Click to reveal answer
How do you specify a local image in React Native's
Image component?✗ Incorrect
Local images must be imported using require() inside the source prop.
Which prop is used to load an image from a URL?
✗ Incorrect
The source prop accepts an object with a uri key for remote images.
What happens if you don't set width and height on an
Image?✗ Incorrect
Width and height define the space for the image; without them, display issues occur.
How can you make an image accessible for screen readers?
✗ Incorrect
React Native uses accessibilityLabel to describe images for screen readers.
Which of these is a valid way to import a local image?
✗ Incorrect
React Native uses require() to bundle local images.
Explain how to display both a local and a remote image using React Native's Image component.
Think about how you tell React Native where to find the image.
You got /4 concepts.
Describe why accessibility is important for images and how to add it in React Native.
Imagine a friend who cannot see the screen well.
You got /4 concepts.