ImagePickerWeb を使用して、ユーザーが自分のアプリから写真をアップロードできるようにしています
Future<void> getPhotos() async {
var imageFile = await ImagePickerWeb.getImage(outputType: ImageType.file);
print(imageFile);
if (imageFile != null) {
setState(() {
currentSelfie = imageFile;
_accDetails['customer_selfie'] = currentSelfie;
});
}
Image.File 経由で画像を表示しようとすると
Image.file(
currentSelfie,
height: screenAwareSize(100, context),
width: screenAwareSize(100, context),
fit: BoxFit.fill,
),
このエラーが発生します
File$ ([オブジェクト ファイル]) :<getObject: NoSuchMethodError: null で getter 'uri' が呼び出されました。>
画像をバックエンドサーバーに渡し、データをファイルとして受け取るため、ファイル形式を使用しています。どんな助けでも大歓迎です。