我正在嘗試在我的 React Native 應(yīng)用程序中使用模式。我從不同的依賴關(guān)系中得到了兩種不同的模式。一種僅適用于 IOS 和 Android,另一種僅適用于 Web。因此,我嘗試在導(dǎo)入它時對其進(jìn)行重命名,并在顯示模式之前檢查平臺。不幸的是這不起作用。這是我嘗試過的。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>移動模式運行良好,但當(dāng)我運行它時,它只在網(wǎng)絡(luò)上顯示一個白色頁面,沒有任何錯誤消息。請問我該怎么辦?
如何在 React Native 中使用從不同依賴項導(dǎo)入的兩個不同的 Modal?
繁華開滿天機
2023-07-14 09:45:30