save before flutter upgrade

This commit is contained in:
Abraham
2025-07-15 16:40:14 -07:00
commit 813c586a1c
197 changed files with 11144 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import 'package:intl/intl.dart';
String monthName(int mes) {
DateTime dateTime = DateTime(DateTime.now().year, mes);
String value = DateFormat('MMMM', 'es').format(dateTime);
value = value[0].toUpperCase() + value.substring(1);
return value;
}