I’m using
<ion-app class="ios"></ion-app>
But I’m still getting the Android component’s theme
Thanks.
I’m using
<ion-app class="ios"></ion-app>
But I’m still getting the Android component’s theme
Thanks.
Nvm I understood the documentation wrongly and it turns out that it’s done like this in the app.module.ts:
imports: [
IonicModule.forRoot(MyApp,{
mode: ‘md’
})
],
It should be documented there tho since it’s about theming IMO.