In my flutter app, when I click a button (or anything decorated with InkWell) the splash/ripple effect is very gentle, almost invisible. (It is there, it’s not covered, just very gentle, too subtle).
When I use other apps (e.g. Google’s Gmail app) every time I tap something, the splash/ripple effect is VERY strong and gives good visual to the user what he/she just tapped.
Question:
How to make splash/ripple effect stronger in flutter app?
2
Answers
the
InkWell
widget gives you control over thesplashColor
and thehighlightColor
of it, you need simply to assign them like this:this now will give it a splash ( ink effect ) red color, and when it’s highlighted, it will shows green.
Pro Tip: build a wrapper for InkWell and use in the entire app
and use your own customized InkWell
Regards