flutter_svg icon indicating copy to clipboard operation
flutter_svg copied to clipboard

Invalid double 1pt

Open binoysarker opened this issue 5 years ago • 2 comments

I just installed flutter_svg in flutter and apply this code trailing: FutureBuilder( future: this ._worldTimeService .getFlag(this.allTimeZones[index].split('/').first), builder: (context, snapshot) { if (snapshot.connectionState == ConnectionState.done && snapshot.data != null) { return SizedBox( child: SvgPicture.network( snapshot.data, width: 50.0, height: 50.0, allowDrawingOutsideViewBox: false, ), ); } else { // print(snapshot.data); return Text('no image'); } }), **Now my problem is that this data is in list view and it is loading some svg flags in a list view. After scrolling i get this error. Please tell me how to solve this. Thanks. **

binoysarker avatar Jan 06 '20 07:01 binoysarker

Flutter_svg does not support or values.

dnfield avatar Jan 06 '20 14:01 dnfield

any solution?

kevin4dhd avatar Mar 30 '22 21:03 kevin4dhd