我正在使用react-native-lightbox。我无法解决图书馆的两个问题。
答案 0 :(得分:2)
要删除onRequestClose
警告,您应该将其作为组件Lightbox的属性提供:
import _ from 'lodash';
...
<Lightbox onRequestClose={_.noop}>
关于图像居中,将Image
组件包含在具有以下样式的View
内:
flex: 1,
alignItems: 'center',
justifyContent: 'center'
它应该可行