item method
Implementation
Widget item({required Widget child, required Color color}) {
return Container(
padding: const EdgeInsets.all(5),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: color,
),
child: child,
);
}