Need to create dotted circle border. Tried dotted border with radius property but still it not filling up like complete dotted circle with the text. Please help to create dotted border like the image. Thanks
Center(
child: Text('Received'),
),
SizedBox(height: 30),
Center(
child: Text('Shipped'),
),
SizedBox(height: 30),
Center(
child: DottedBorder(
dashPattern: const [8, 4],
strokeWidth: 1,
color: mainColor,
radius: Radius.circular(20),
child: SizedBox(),
),
),
SizedBox(height: 30),
Center(
child: Text('Delivered'),
)

