Invalid double 1pt
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. **
Flutter_svg does not support or values.
any solution?