我试图在我的颤振桌面项目中使用 image_picker 插件,但我认为这个插件没有实现与 Windows 桌面应用程序一起使用。有人有解决方案吗?Ps:我想使用 go-flutter 和 hover。
问问题
1443 次
2 回答
1
有两种选择:
- 为 Windows 实现插件。
- 使用FDE 的 file_chooser 插件(一旦Windows 实现落地)并为您想要允许的图像类型设置文件类型过滤器。
于 2020-01-24T15:54:03.450 回答
0
File image;
final picker = ImagePicker();
Future getImage(ImageSource src) async {
final pickedFile = await picker.getImage(source: src);
setState(() {
if (pickedFile != null) {
image = File(pickedFile.path);
} else {
print("no image selected");
}
});
}
于 2021-10-10T16:20:49.407 回答