flutter_carousel_slider
flutter_carousel_slider copied to clipboard
Refactor: Replace deprecated withOpacity() with withValues() to remove warnings
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)