How to add a circular dot as an indicator in Flutter Tabs?
Container(
width: 5,
height: 5,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.deepPurpleAccent,
),
),