I have followed the steps in integrating Ionic Material Design into an Ionic Project. Below is the list of what I have done:
- ionic start ionicMaterial blank
- bower install ionic-material
- bower install robotodraft
- Added the JS and CSS libs in out Ionic index.html page
On the Fifth it instructs to Inject Ionic Material into your Ionic App like so:
var app = angular.module('YOUR_APP_NAME', ['ionic', 'ionic-material']);
Where and how will I inject it in my Ionic project? I have the app.module.ts and app.component.ts. But how and where do I insert the code mentioned since it even asks me to put in my application name angular.module('YOUR_APP_NAME', ['ionic', 'ionic-material'])
.