有没有一种方法可以检测可用的应用程序来选择图像,例如画廊,亚马逊照片,google 照片......使用颤振图像选择器
Is there a way to detect available applications to pick image like gallery , amazon photos , google photos ... using flutter image picker
我想创建一个像 android native 这样的图像选择器,它可以检测所有可用的应用程序以使用 flutter 图像选择器选择图像。
更具体地说,我想显示可用的图像应用程序。
嘿 不知道 image_picker
,但是 file_picker
对我有用,如下所示
Future getFromGallery() async {
FilePickerResult? result =
await FilePicker.platform.pickFiles(type: FileType.image);
if (result != null) {
setState(() {
pickedImage = File(result.files.single.path!);
});
}
}
我想创建一个像 android native 这样的图像选择器,它可以检测所有可用的应用程序以使用 flutter 图像选择器选择图像。 更具体地说,我想显示可用的图像应用程序。
嘿 不知道 image_picker
,但是 file_picker
对我有用,如下所示
Future getFromGallery() async {
FilePickerResult? result =
await FilePicker.platform.pickFiles(type: FileType.image);
if (result != null) {
setState(() {
pickedImage = File(result.files.single.path!);
});
}
}