fix(web): withOpacity à la place de withValues (Flutter 3.19 / dart2js)

Made-with: Cursor
This commit is contained in:
2026-04-12 21:11:06 +02:00
parent 518b3f84df
commit 4dedd9b87a
3 changed files with 7 additions and 7 deletions
@@ -89,7 +89,7 @@ class _CustomAppTextFieldState extends State<CustomAppTextField> {
final Color labelColor =
widget.enabled ? Colors.black87 : Colors.grey;
final Color hintColor = widget.enabled
? Colors.black54.withValues(alpha: 0.7)
? Colors.black54.withOpacity(0.7)
: Colors.grey;
return Column(