我找不到用于Web的任何图像选择器,我尝试了pub.dev上的许多软件包,但没有用 这是我尝试但无法使用的一些方法。请提供任何解决方案
image_picker: ^0.6.3+1
flutter_web_image_picker: ^0.0.2
@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...')),
);
}