Questions tagged [ripple-effect]
55 questions
0
votes
2 answers
Flutter ripple effect for png or svg images
I am looking for someway to add ripple effect on the png or svg images in flutter, without covering the transparent parts in image.
I use this code to add ripple effect over an svg image:
Stack(
children: [
SvgPicture.asset(
…

amir_a14
- 1,478
- 10
- 15
0
votes
1 answer
Ripple effect of TextView gets stuck on long click, when selection is used
I recently refactored my App to use the jetpack navigation. On my MainActivity, I had a ViewPager containing 3 fragments with 1 recyclerview each. I therefore moved the ViewPager from the Activity to a new Fragment. Everything works when it comes to…

mexes
- 117
- 7
0
votes
2 answers
How to add splash color or ripple effects to IconButtons or elevated Buttons
On this screen there is an iconButton, a microphone the user must tap before repeating a word. I added splashcolor to the properties of the IconButton, but nothing shows when user taps. Same thing with ToolTip.
I had noticed random behaviors with my…

SylvainJack
- 1,007
- 1
- 8
- 27
0
votes
1 answer
Ripple Animation not shown on MenuItem while programatically perform MenuItem click
I have a search feature in my app, where I can move up and down icons in the Menu. If I tap on the up and down icon I can see the ripple effect on the icon. Now I want to perform up icon functionalities when I tap the search button from the…

Mohan K
- 464
- 5
- 18
0
votes
3 answers
How to remove ripple effect from mat-stepper
tihs is the effect when you hover you mose over matstepper
not able to figure how to disable this effect
want to remove ripple effect or focus effect or scrollable affect from mat-stepper
please help me out here
i have tried all the methods
not…

Noob being Geek
- 21
- 3
0
votes
1 answer
Remove Ripple Effect from CollectionView
How to remove ripple effect from CollectionView selecting item ?
Automatically adds a ripple effect when I click on an item
This is my code
protected override void OnAppearing()
{
base.OnAppearing();
var t =…

jary dst
- 13
- 6
0
votes
2 answers
Setting Ripple effect to RecyclerView CardView item without having to double tap for an item action
I have a RecyclerView with a CardView as the root element of the row item layout. I managed to have a ripple effect to CardView using below list item layout as described here.
Row item layout:

Zain
- 37,492
- 7
- 60
- 84
0
votes
0 answers
Android ripple color applied for focused and hovered states
I'm trying to implement Button (AppCompatButton) with ripple effect and selector (focused, hovered, disabled etc.). I've created drawable.xml which looks like this:

Alex.Marynovskyi
- 1,264
- 3
- 16
- 22
-1
votes
4 answers
How do you remove RIPPLE EFFECT from a CLICKABLE TRANSPARENT CONTAINER?
I want to remove the ripple effect from a transparent clickable container but no matter what I do the effect just doesn't go away, please help!
Code:
InkWell(
onTap: (){print('Tapped');},
child: Container(
height: 200, width: 200,),)

Siddharth Mehra
- 1,691
- 1
- 9
- 32