React Native Image component provides blurRadius
prop which accepts a numerical value. This prop can be used to add blur to the images.
0 value means no blur, while any value greater than 0 will increase the magnitude of blur in proportion of the provided number. Higher the number, more will be the blur.
Code Example
import React from 'react'; import { View, Image, StyleSheet } from 'react-native'; const styles = StyleSheet.create({ container: { flex: 1, paddingTop: 50, flexDirection: 'row', justifyContent: 'space-around' }, image: { height: 200, width: 150, }, }); const DisplayAnImage = () => { return ( <View style={styles.container}> <Image style={styles.image} source={{uri: 'https://www.princeton.edu/sites/default/files/styles/half_2x/public/images/2022/02/KOA_Nassau_2697x1517.jpg?itok=iQEwihUn'}} blurRadius={0} /> <Image style={styles.image} source={{uri: 'https://www.princeton.edu/sites/default/files/styles/half_2x/public/images/2022/02/KOA_Nassau_2697x1517.jpg?itok=iQEwihUn'}} blurRadius={2} /> </View> ); } export default DisplayAnImage;
The output will look like this –
The above image is the side by side comparison of two values of blurRadius
prop. The first is at blurRadius 0 which is same as original image and we can simply omit the use of this prop in it. The second is at blurRadius 2. If you increase the value, the image will get more blurry.
Note: For iOS, you need to provide blurRadius > 5.
Live Demo
Conclusion
Adding blur to the image in React native is simple. You just need to provide a numerical value to the blurRadius
prop.
Read These Next ⬇️
How to Display Image from remote url?
How to Display Image from local storage?
How to Display Base64 Image?
How to Display Gif & Webp Images?
How to Add Blur to Image?
How to Display loader for Image?
How to use Resizemode for Images?
How to Set Default Placeholder Image?
How to set Background Image?
React Native Series
Alert
- Basic Alert
- Dismiss on Clicking Outside
- Input Fields in Alert Dialog – Prompt()
- Dark-Light Theme of Dialog
ActivityIndicator
- Basic Circular Loader
- Change size of Circular Loader
- Show/hide Circular Loader
- Change color of Circular Loader
Button
FlatList
- Simple List
- Single Item Selection from List
- Multiple Item Selection from List
- Adding separator between list items
- Multiple columns List
- Showing Message in Empty List
- Add Footer to the List
- Add Header to the List
- Horizontal List
- Inverted List
- Pull to Refresh in List
- Infinite Loading List
SectionList
ScrollView
- ScrollView
- Stick Single Item at Header
- Stick Multiple Items at Header
- Stick Item at Footer
- Hide Sticky Element on Scroll
Image
- Display Image from remote url
- Display local storage image
- Display Base64 Image
- Display Gif & Webp Images
- Adding Blur to Image
- Displaying loader for Image
- Resizemode for Images
- Setting Default Placeholder Image
- Background Image
Modal
RefreshControl
- RefreshControl
- Change Refresh Loader Color
- Change Refresh Loader Size
- Change Refresh Loader Background Color
- Title under Refresh Loader
- Change color of title under refresh loader
StatusBar
- Get StatusBar Size
- Change StatusBar Background Color
- Display StatusBar icons & text in While Color
- Display StatusBar icons & text in Dark Color
- Hiding StatusBar
- Translucent StatusBar
Switch
Text
- Adding Text
- Bold Text
- Italic Text
- Underline Text
- Selecting Text for copy-paste
- Changing Highlight Color of Text Selection
- Fit text in View box
- Clickable anchors in text
- Truncate Lengthy Text
TextInput
- Simple Input Field
- Auto Capitalize Text in Input Field
- Multiline Input Field
- Hide Cursor in Input Field
- Clear input Field using X
- Clear input Field when focused
- Change Cursor Color in Input Field
- Disable input field
- Icon at the left of Input Field
- Dark-Light Keyboard
- Avoid Overlapping of Keyboard
- Limiting Characters in Input Field
- Numeric Keyboard
- Email Id Keyboard
- Phone number Keyboard
- Url Keyboard
- Placeholder in input field
- Placeholder Color in Input Field
- Password Input Field
- Programmatically select text in Input Field
- Change Text Selection Color in Input Field
- Select Whole text in Input Field on Focus
- Write text from center in input field
- Changing underline color of input field
TouchableWithoutFeedback
TouchableHighlight
TouchableOpacity
Pressable
Appearance
AppState
ToastAndroid
Dimensions
Keyboard