I just upgraded to Ionic 7 and got an issue using ion-toggle. I can not scroll my content when using Ion-Toggle. I also tried to put them inside an ion-list, but that did not change anything about it. Under and above this list everything works fine and i can scroll like usual.
Here is an example:
<ion-list>
<ion-item lines="full">
<ion-toggle justify="space-between" v-model="ionic" color="success">Ionic-Toggle</ion-toggle>
</ion-item>
<ion-item lines="full">
<ion-toggle justify="space-between" v-model="basic" color="success">Basic Toggle</ion-toggle>
</ion-item>
</ion-list>