expo-image-picker android 没有 select 按钮

expo-image-picker android doesn't have a select button

我正在使用 React Native 和 expo,expo-image-picker 在 iOs 上运行良好,在 android 上运行良好,只有一个例外。当用户从图库中拉出图片时,没有“确定”或“select”或“完成”按钮。

用户必须单击裁剪按钮才能接受图像。这是典型的吗?我觉得这会让人感到困惑和糟糕的用户体验...

const chooseImage = async (useCamera, index) => {
if (!(await checkPermission(useCamera))) {
  Alert.alert(
    "Permission missing.",
    "Camera permission is required to take image."
  );
  return;
}
const method = useCamera ? "launchCameraAsync" : "launchImageLibraryAsync";
const result = await ImagePicker[method]({
  allowsEditing: true,
  base64: false,
  aspect: [3, 4],
});
if (!result.cancelled) {
  // upload image and retrieve image url
  const {height, width, type, uri} = result;
  profile.images[index] = uri;
  if (uri != null) {
    setProfile(profile);
  }
  setChangedValue("images");
}
};

更新 发现我可以select 如果我删除编辑功能 allowsEditing 照片。但是我希望用户能够编辑,所以我很好奇为什么编辑上面没有“确定”按钮?

我发现裁剪按钮是“完成”按钮。

没有其他方法可以实现图像的选择,所以这只是图像选择器的一个设计方面。