From 03bf058dd7c074a370508013e8adfbfec569cbcd Mon Sep 17 00:00:00 2001 From: Juan Gerardo Eulufi Salazar Date: Mon, 3 Jun 2024 04:54:55 -0400 Subject: [PATCH] Add reference link to React Native ImageBackground component (#5795) * add reference link to React Native ImageBackground component --------- Co-authored-by: Ruslan Semagin Co-authored-by: dsh Co-authored-by: Ruslan Semagin <53819609+pixel365@users.noreply.github.com> Co-authored-by: Suman Kisku --- .../content/104-core-components/104-image-background.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)