Does angular/material2 have a grid system

3.6k 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 best solutions below

0
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
On

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

And flex-Layout

1
On

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

0
On

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