How to create a small circular dot in FLutter code example
Container(
width: 5,
height: 5,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.deepPurpleAccent,
),
),