M Fuat
M Fuat

Reputation: 1440

Can I use Ionic Material with Ionic 2?

I am going to develop an IOS application using Ionic 2 , Is there any ability to use Ionic Material IonicMaterial to materialize my app ? I know that Ionic 2 is already materialized but I want to make benefit of Ionic material library.

Upvotes: 1

Views: 1087

Answers (1)

NIsham Mahsin
NIsham Mahsin

Reputation: 768

Yes .You can use. install angular material 1.

npm install --save @angular/material

2.import and add

   import { MaterialModule } from '@angular/material';
   // other imports 
   @NgModule({
   imports: [MaterialModule],
   ...
   })

then you can use material components

Upvotes: 2

Related Questions