Martin Andersen
Martin Andersen

Reputation: 2748

Does angular/material2 have a grid system

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.

Upvotes: 4

Views: 3604

Answers (4)

Mauricio Rivera
Mauricio Rivera

Reputation: 84

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

Upvotes: 0

BH385
BH385

Reputation: 36

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

Upvotes: 2

Josf
Josf

Reputation: 786

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

Upvotes: 0

Soheil Alizadeh
Soheil Alizadeh

Reputation: 3066

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

And flex-Layout

Upvotes: 1

Related Questions