I am using the Inkwell widget to show ripple effect but I am not able to get it to the color I want.
Partial Code:
Material(
color: Colors.transparent,
child: InkWell(
onTap: () {},
splashColor: Colors.black87,
highlightColor: Colors.black87,
focusColor: Colors.black87,
hoverColor: Colors.black87,
child: ListTile(
onTap: () {
Here I have shown the important parts of the code. I am only getting white ripple even though I set it to black.
What is the issue here?
Please comment if you need more information.

