upgraded flutter and other fixes

This commit is contained in:
zach
2025-12-31 22:19:48 -07:00
parent be97e5c7fc
commit 44be6cd5e7
24 changed files with 2082 additions and 442 deletions
+2 -2
View File
@@ -682,7 +682,7 @@ class _ContactsScreenState extends State<ContactsScreen>
return;
}
final exists = _groups.any((g) {
if (isEditing && g.name == group!.name) return false;
if (isEditing && g.name == group.name) return false;
return g.name.toLowerCase() == name.toLowerCase();
});
if (exists) {
@@ -693,7 +693,7 @@ class _ContactsScreenState extends State<ContactsScreen>
}
setState(() {
if (isEditing) {
final index = _groups.indexWhere((g) => g.name == group!.name);
final index = _groups.indexWhere((g) => g.name == group.name);
if (index != -1) {
_groups[index] = ContactGroup(
name: name,