我刚刚添加了react-native-photo-editor,并且除裁剪外,其他所有功能都运行良好。对此没有选择。我已经在3种不同的Android设备和模拟器上进行了测试,但是都一样。
RNPhotoEditor.Edit({
path: response.path,
hiddenControls: ['save'],
onCancel: () => { Actions.pop() },
onDone: () => { Actions.refresh({ key: Math.random() }) }
});
我已经阅读了文档,但由于它不在我的“ hiddenControls”数组中,因此看起来应该显示为默认值。
您可以在第一个图像中看到没有裁剪选项,但是在从文档中获取的第二个图像中,您可以看到它。
谢谢。