Ionic 2 - Force style to Material Design

Hello guys.

I found this on docs:

You can change the mode that gets assigned in the configuration of your app. Therefore, if you wanted the Material Design md mode on iOS, you could do it.

But where exactly should I change it?

Thanks.

You should read this

@App({
  template: `<ion-nav [root]="root"></ion-nav>`
  config: {
    mode: md
  }
})

Perfect.

Thanks a lot!