diff --git a/src/data/roadmaps/react-native/content/104-core-components/104-image-background.md b/src/data/roadmaps/react-native/content/104-core-components/104-image-background.md index 2b1d88c32..d08bd0cc6 100644 --- a/src/data/roadmaps/react-native/content/104-core-components/104-image-background.md +++ b/src/data/roadmaps/react-native/content/104-core-components/104-image-background.md @@ -35,4 +35,8 @@ const styles = StyleSheet.create({ export default App; ``` -In the above example, `source` prop is used to add the image URL, `style` prop for adding some custom styling, and `resizeMode` to define how the image should stretch to fill the available space. The `Text` component inside the `ImageBackground` is then rendered on top of the image. \ No newline at end of file +In the above example, `source` prop is used to add the image URL, `style` prop for adding some custom styling, and `resizeMode` to define how the image should stretch to fill the available space. The `Text` component inside the `ImageBackground` is then rendered on top of the image. + +For more information and details, you can refer to the React Native docs: + +- [Image Background - React Native](https://reactnative.dev/docs/imagebackground)