buildReplay method
Implementation
Widget buildReplay(VoidCallback onTap) {
return Center(
child: CupertinoButton(
padding: EdgeInsets.zero,
onPressed: onTap,
child: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.black26,
),
child: const Icon(
Icons.cached_rounded,
color: Colors.white,
size: 60,
),
),
),
);
}