Ahmadre / image_picker_web

A picker with which you can pick images and videos from your Flutter web app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WASM Support

RajeevRetire100 opened this issue · comments

Any eta for flutter version 3.22.1 compatibility with wasm support

I haven't started working on it.
If anyone wants to work on this and open a PR I'll be glad to review it.

I've quickly investigated the migration requirements to wasm and it seems like there's currently no replacement to the FileUploadInputElement class which this package heavily relies on. Not sure that a migration to webassembly is possible for now.

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.

This issue was closed because it has been stalled for 5 days with no activity.

commented

I've quickly investigated the migration requirements to wasm and it seems like there's currently no replacement to the FileUploadInputElement class which this package heavily relies on. Not sure that a migration to webassembly is possible for now.

in 'package:web/web.dart' use HTMLInputElement()..accept = '$type/*'..type = 'file';

commented

I trying to migrate to package:web