dnfield / flutter_svg

SVG parsing, rendering, and widget library for Flutter
MIT License
1.64k stars 449 forks source link

colorFilter not working in Flutter Web Apps on mobile devices with iOS 17.2 on Safari anymore #1079

Open chrisDK1977 opened 2 weeks ago

chrisDK1977 commented 2 weeks ago

SvgPicture.asset(pathToAsset, colorFilter: ColorFilter.mode(Color(0xFFFF0000), BlendMode.srcIn));

... tints the asset red on iOS 15 on Safari on mobile devices but not when mobile device is running on safari on iOS17.2 it does not change the color.

jannisnikoy commented 2 weeks ago

I think this might be a change in Flutter 3.22 that broke it. Noticed the same issue after upgrading our project to latest Flutter SDK.

chrisDK1977 commented 2 weeks ago

@dnfield Should I open an issue in the flutter project or is this project the correct place for the bug?