Up to date styles for android/web?

Hi,

I started to use ionic, mostly for android+web development. But I find the styles for android are quite outdated. Nowadays, buttons on android don’t have shadow, have color that are a bit more faded.

Is there a way for me to have an app a bit more modern with ionic? I know I can customize myself the styles, but it’s like a BIG work and I though that one of the biggest advantage of Ionic was the ability to match the styles of the device.

Thanks!

Hello,

you could use iOS Styles on Android. Add mode="ios" to the component or activate the style globally:

import { IonicModule } from '@ionic/angular';

@NgModule({
  ...
  imports: [
    IonicModule.forRoot({
      mode: 'ios'
    })
  ],
  ...
})

That looks better, right, but still, there are a lot of styles that are quite different than the android style.