My question ties into #18660
We have recently updated our project to:
"@capacitor/cli": "^1.5.0",
"@ionic/angular": "^5.0.0",
"cordova-ios": "~5.1.1",
We’re building the App using Capacitor.
I was expecting modals to appear in the new iOS13 card design,
but that is not the case. Is that because of Capacitor or what am I missing?
The presentation implementation is relatively straight forward:
...
const presentingElement = await this.modalController.getTop()
const modal = await this.modalController.create({
component: DropDownModalComponent,
swipeToClose: true,
presentingElement: presentingElement,
componentProps: {
'header': header,
'options': options
}
})
await modal.present()
...
Any help is highly appreciated.