如何在 Ionic (Angular) 中将所有模式的模式更改为 ios?

How do I change the mode of all modals to ios in Ionic (Angular)?

如何更改 Ionic 5 应用程序中所有模态框的模式,使其以 iOS 模态样式显示?

谢谢!

app.module.ts

IonicModule 的配置中更改 mode
@NgModule({
  ...
  imports: [
    ...
    IonicModule.forRoot({
        ...
        mode: "ios",
        ... 
    }),
    ...
  ],
  ...
})