//circular elevated button
ElevatedButton(
style: ElevatedButton.styleFrom(
shape: const CircleBorder(),
),
onPressed: () {},
child: const Icon(Icons.refresh),
),