Widget imageFromFile(File imageFile, {double? width, double? height, Color? color}) { return Image.file( imageFile, color: color, width: width, height: height, ); }