flutter_carousel_slider icon indicating copy to clipboard operation
flutter_carousel_slider copied to clipboard

Refactor: Replace deprecated withOpacity() with withValues() to remove warnings

Open akhil-ge0rge opened this issue 1 month ago • 0 comments

This PR replaces all usages of the deprecated Color.withOpacity() API with Color.withValues(alpha: ...) as recommended by Flutter.

Reason:

  • withOpacity() is deprecated and triggers warnings.
  • withValues() avoids precision loss and is the correct modern API.

Example change: Before: color.withOpacity(0.4)

After: color.withValues(alpha: 0.4)

akhil-ge0rge avatar Nov 17 '25 14:11 akhil-ge0rge