Hello folks,
I would like to apply the Android material design css to all devices, even IOS, but it won’t work
I followed som post that mentioned to only apply “config: { mode: ‘md’ }”… but it won’t work. Does anyone know, what I did wrong.
Here’s my code snippet:
import {Component, ViewChild} from '@angular/core';
import {ionicBootstrap, Platform, MenuController} from 'ionic-angular';
import {StatusBar} from 'ionic-native';
import {HelloIonicPage} from './pages/hello-ionic/hello-ionic';
import {ListPage} from './pages/list/list';
@Component({
templateUrl: 'build/app.html',
config: {
mode: "md"
},
queries: {
nav: new ViewChild('content')
}
})
I really have no idea anymore, how to solve this issue.
Thanks in advance,
Oliver