static Widget svgFromUrl(String url, {BoxFit boxFit = BoxFit.fitWidth}) { var img = SvgPicture.network( url, fit: boxFit, ); return img; }