openSystemGallery function

Future<String?> openSystemGallery()

打开系统相册 返回文件路径 ios info.plist add ios path 包含 file:///

Implementation

Future<String?> openSystemGallery() async {
  if (!supportPlatformMobile) return null;
  return await curiosityChannel.invokeMethod('openSystemGallery');
}