I have a simple InkWell with a Container inside of it. I would like to have the ripple affect but it is not showing. Neither is hoverColor/focusColor...
My button:
class EntryNextButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return InkWell(
onTap: () {
print("Container clicked");
},
child: Container(
...
);
}
}
What am I missing here?