I Updated my project to flutter 2.0.2 without null safety. Now I am trying to lunch on web (chrome). When app is launch in splash page I loaded a svg image. The svg is loaded on chrome but in terminal I see this error :unhandled element filter; Picture key: AssetBundlePictureKey(bundle: PlatformAssetBundle#0a707(), name: "assets/svgs/splash.svg", colorFilter: null)
This is flutter slpash svg code:
Stack(children: [
Container(
width: double.infinity,
height: double.infinity,
child: SvgPicture.asset(
R.assetsSvgsSplash,
fit: BoxFit.cover,
),),
I am using flutter_svg: ^0.19.3
this doctor:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.0.2, on Linux, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.0-rc1)
[✓] Chrome - develop for the web
[✓] Android Studio (version 4.0)
[✓] VS Code (version 1.54.2)
[✓] Connected device (1 available)
• No issues found!
<filter((.|\n)*)</filter>
– Cutlip