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