请推荐一个支持两个平台的文件选择器 ios 和 android。
https://pub.dev/documentation/file_picker/latest/
上面的 URL 插件我正在使用但在 ios 应用中不起作用,请推荐任何新插件。
FilePickerResult result = await FilePicker.platform.pickFiles(
type: FileType.custom,
allowedExtensions: ['png', 'cdr', 'psd'],
);
if(result != null) {
files = File(result.files.single.path);
setState(() {
filePath = files.path;
fileName = (filePath.split('/').last);
print("File Path Select---" + files.path.toString());
});
} else {
// User canceled the picker
}
谢谢
答案 0 :(得分:0)
我使用 file_picker:^1.13.3
下一个代码对我来说很好
lat_list = list()
long_list = list()
for elem in datadict:
lat_list.append(elem['lat'])
long_list.append(elem['lon'])