我正在尝试修正我的模式在出现时的工作方式。
当屏幕尺寸很大时,由于最小高度css,它具有半透明的背景。我不介意最小高度,我只希望它们都是白色的。
通常会创建然后显示:
this.modalCtrl.create({
component: AddCommentPage,
componentProps: { id: this.place.id }
}).then((element) => element.present());
这是大屏幕时的视图:
当它很小时(应为全屏显示):
答案 0 :(得分:0)
我通过将以下代码添加到我的.scss文件中来修复它:
.modal-wrapper {
background-color: white;
}