Does angular/material2 have a grid system

3.5k views Asked by At

angular/material2 is just out in beta.0 with a new site.

But I cant find out if it has a responsiv grid system for layout, like bootstrap.

4

There are 4 answers

0
BH385 On BEST ANSWER

in app.module.ts:

import { FlexLayoutModule } from '@angular/flex-layout';

@NgModule({

  import:[

    FlexLayoutModule

  ])}

then follow the handbook below to learn how to use it in your HTML: https://github.com/angular/flex-layout

https://tburleson-layouts-demos.firebaseapp.com/#/docs

0
Soheil Alizadeh On

You Can Use this Package |ng2-flex-layout|

And flex-Layout

1
Josf On

Yes, Angular/Material2 does have grid layout: material grid layout

0
Mauricio Rivera On

You can refer to this answer about creating your own Angular Grid System from scratch.