Просмотр исходного кода

P1-28: gemeente-hartje contrastfix (fillColor bordeauxrood, zelfde als buurknoppen)

Het favoriet-hartje in de AppBar (P1-26) had vrijwel geen contrast:
transparante fillColor + wit icoon op een lichte achtergrond. Beide
takken (gevuld/leeg) van de ConditionalBuilder kregen nu dezelfde
fillColor: Color(0xFFB50808) als de hamburger/terug-knoppen ernaast.
Bevestigd via verse export: alle 4 IconButtons in dit bestand
gebruiken nu identieke fillColor.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
bob 3 недель назад
Родитель
Сommit
0073299251
2 измененных файлов с 6 добавлено и 6 удалено
  1. 4 4
      ios/Runner.xcodeproj/project.pbxproj
  2. 2 2
      lib/components/header_buttons_component_widget.dart

+ 4 - 4
ios/Runner.xcodeproj/project.pbxproj

@@ -44,8 +44,8 @@
 		97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
 		97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
 		97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
 		97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
 		97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
 		97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
-		6436409127A31CDA00820AF7 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
-		6436409A27A31CD400820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+		6436409D27A31CDE00820AF7 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+		6436409627A31CD300820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
 		97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 		97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 /* End PBXFileReference section */
 /* End PBXFileReference section */
 
 
@@ -225,8 +225,8 @@
 		6436409C27A31CD800820AF7 /* InfoPlist.strings */ = {
 		6436409C27A31CD800820AF7 /* InfoPlist.strings */ = {
 			isa = PBXVariantGroup;
 			isa = PBXVariantGroup;
 			children = (
 			children = (
-				6436409127A31CDA00820AF7 /* nl */,
-				6436409A27A31CD400820AF7 /* en */,
+				6436409D27A31CDE00820AF7 /* nl */,
+				6436409627A31CD300820AF7 /* en */,
 			);
 			);
 			name = InfoPlist.strings;
 			name = InfoPlist.strings;
 			sourceTree = "<group>";
 			sourceTree = "<group>";

+ 2 - 2
lib/components/header_buttons_component_widget.dart

@@ -233,7 +233,7 @@ class _HeaderButtonsComponentWidgetState
                 return FlutterFlowIconButton(
                 return FlutterFlowIconButton(
                   borderRadius: 8.0,
                   borderRadius: 8.0,
                   buttonSize: 40.0,
                   buttonSize: 40.0,
-                  fillColor: Color(0x004B39EF),
+                  fillColor: Color(0xFFB50808),
                   icon: Icon(
                   icon: Icon(
                     Icons.favorite,
                     Icons.favorite,
                     color: Colors.white,
                     color: Colors.white,
@@ -257,7 +257,7 @@ class _HeaderButtonsComponentWidgetState
                 return FlutterFlowIconButton(
                 return FlutterFlowIconButton(
                   borderRadius: 8.0,
                   borderRadius: 8.0,
                   buttonSize: 40.0,
                   buttonSize: 40.0,
-                  fillColor: Color(0x004B39EF),
+                  fillColor: Color(0xFFB50808),
                   icon: Icon(
                   icon: Icon(
                     Icons.favorite_border,
                     Icons.favorite_border,
                     color: Colors.white,
                     color: Colors.white,