✨ make it possible to disable the ripple effect on a button component
See original GitHub issueIs your feature request related to a problem? Please describe. Ripple effect cannot be disabled on a button component.
Describe the solution you’d like It would be nice to replace the TouchableRipple component with TouchableWithoutFeedback.
import { TouchableWithoutFeedback } from 'react-native';
import { Button } from 'react-native-paper';
// option 1
<Button TouchableComponent={TouchableWithoutFeedback}>Button</Button>
// option 2
<Button disableRipple>Button</Button>
Versions react-native: 0.63.3 react-native-paper: 4.6.0 react-native-vector-icons: 7.1.0
Issue Analytics
- State:
- Created 3 years ago
- Reactions:6
- Comments:7
Top Results From Across the Web
Disable Ripple effect on MUI Button and add custom
I wanted to remove the ripple effect on the button and implement my custom effect in MUI Button. I have removed ripple using...
Read more >3 Ways to Disable the Ripple Effect in Jetpack Compose
Today, you will learn how to disable or remove the ripple effect in Android Jetpack Compose. These are the 3 methods we will...
Read more >How to Add Ripple Effect Animation on the Button in React ...
In this tutorial, we want to implement the ripple effect on the buttons on both Android and iOS platforms.
Read more >Create Reusable Button Component With Ripple Effect
Today, you'll learn how to create a reusable button component with a ripple effect using predefined variables and formulas.
Read more >Jetpack compose: Cool Button Click Effects | by Radhika S
By default, the button displays a ripple effect when it is touched. You can customize ripple color, alpha, etc.. as per your requirement,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hello 👋, this issue has been open for more than 2 months with no activity on it. If the issue is still present in the latest version, please leave a comment within 7 days to keep it open, otherwise it will be closed automatically. If you found a solution on workaround for the issue, please comment here for others to find. If this issue is critical for you, please consider sending a pull request to fix the issue.
Any progress on this?