Easy pulse animation
Future<void> pulse({int repeatCount = 3}) async { for (int i = 0; i < repeatCount; i++) { await forward(); await reverse(); } }