import 'package:flutter/material.dart'; class AnimatedActionButton extends StatelessWidget { const AnimatedActionButton({ required this.icon, required this.label, super.key, }); final IconData icon; final String label; @override Widget build(BuildContext context) { return Column( children: [ Icon(icon, color: Colors.white, size: 30), const SizedBox(height: 5), Text(label, style: const TextStyle(color: Colors.white, fontSize: 12, fontWeight: FontWeight.w600)), ], ); } }