getClickableIcons function

dynamic getClickableIcons(
  1. String icon,
  2. Color color
)

Implementation

getClickableIcons(String icon, Color color){
  return SizedBox(
    width: 48,
    height: 48,
    child: Padding(
      padding: const EdgeInsets.fromLTRB(14, 5, 14, 5),
      child: Image.asset(icon, width: 16, height: 16,color: color),
    ),
  );
}