ripple function
Implementation
Widget ripple(
BuildContext context, Color color, String imagePath, double imageSize) {
return RipplesRF(
color: color,
child: Container(
decoration: BoxDecoration(
color: Colors.transparent,
),
width: MediaQuery.of(context).size.width * imageSize,
child: Image.asset(
imagePath,
alignment: Alignment.centerLeft,
),
),
);
}