我正在尝试在我的 React Native 应用程序中使用模式。我从不同的依赖关系中得到了两种不同的模式。一种仅适用于 IOS 和 Android,另一种仅适用于 Web。因此,我尝试在导入它时对其进行重命名,并在显示模式之前检查平台。不幸的是这不起作用。这是我尝试过的。
import { Platform, Modal} from 'react-native';
import {Modal as WebModal} from 'modal-react-native-web';
<View>
{Platform.OS === 'web' ?
<WebModal
animationType="slide"
visible={this.state.addScheduleVisible}
onRequestClose={() => this.toggleAddScheduleModal()}
>
<AddSCheduleModal closeModal={() => this.toggleAddScheduleModal()} />
</WebModal>
:
<Modal
animationType="slide"
visible={this.state.addScheduleVisible}
onRequestClose={() => this.toggleAddScheduleModal()}
>
<AddSCheduleModal closeModal={() => this.toggleAddScheduleModal()} />
</Modal>
</View>
移动模式运行良好,但当我运行它时,它只在网络上显示一个白色页面,没有任何错误消息。请问我该怎么办?
ibeautiful
相关分类