Make Ionic 4 look the same across all platforms?

I’m trying to make a theme similar to Instagram, I guess first I have to set Ionic to look the same across the platforms and then theme it.

I’m following this guide: https://ionicframework.com/docs/theming/platform-styles but it doesn’t work - if I set it to “ios”, the Android still looks like “md”.

Any help, please?
Thanks!

then you should add this in your app.module.ts file

imports: [
IonicModule.forRoot(MyApp,{
    mode: 'ios' // or android
})
],

Thanks, now it works… I did it exactly the same, but sometimes when I refresh the Android looks md again… weird…

Thanks really helpful… apnidukaan