Creating a ripple effect in React Native is possible through android_ripple
prop of Pressable component. It accepts a configuration object which defines the properties of ripples.
The object looks like this –
<Pressable android_ripple = {{ color: '#FF0000', borderless: false, radius: 10, foreground: true }} > ... </Pressable>
Let’s understand these properties –
-
color
– Set the color of the ripples. -
borderless
– Accepts boolean value. If true, then ripples will not be within the bounds of Pressable. They will spread outside. -
radius
– A numeric value for radius of ripples. -
foreground
– Whether to show ripples on foreground. Use this option to prevent ripples from hiding behind background colors of child elements.
Note: This feature is specific to Android so it won’t work in iOS.
Code Example
import React, { useState } from 'react'; import { Pressable, StyleSheet, Text, View } from 'react-native'; const RipplePressableComponent = () => { return ( <View style={styles.container}> <Pressable style={styles.button} android_ripple = {{ color: '#FF000024', borderless: false, radius: 10, foreground: true }} > <View> <Text> Click me to see red ripples </Text> </View> </Pressable> </View> ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", }, button: { padding:10, margin: 10, backgroundColor: '#DDDDDD', } }); export default RipplePressableComponent;
Output –
From the image you can see that when we clicked the button, red ripple originates from a distance of click point and end at the click point. So, if you click near to left end of the button then ripple will take birth from left side and end at the click point.
In the code we are setting the ripple configuration from line 10 to 15. Here we are setting red color with transparency using color: '#FF000024'
. Keeping borderless=false
because we want ripple to be within the button boundary.
Live Demo
Conclusion
We can create ripple effect on press of any component using android_ripple
prop of Pressable
component. It accepts the ripple configuration which is an object of 4 properties – color, borderless, radius, foreground. It works for Android phones only.
Read These Next ⬇️
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