A package designed for input images on web flutter.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(image?.semanticLabel ?? ""),
),
floatingActionButton: FloatingActionButton(
child: Icon(Icons.open_in_browser),
onPressed: () async {
final _image = await FlutterWebImagePicker.pickImage();
setState(() {
image = _image;
});
},
),
body: Center(child: image != null ? image : Text('No data...')),
);
}
Please file issues to send feedback or report a bug. Thank you!