-
Notifications
You must be signed in to change notification settings - Fork 771
Webpack Configuration
Joey Perrott edited this page Feb 22, 2018
·
5 revisions
npm install --save @angular/flex-layout
or...
yarn add @angular/flex-layout
app.module.ts
...
import {NgModule} from '@angular/core';
import {FlexLayoutModule} from '@angular/flex-layout';
...
@NgModule({
imports: [
...
FlexLayoutModule
],
...
})
export class AppModule {}
Add the code below into an existing component (or add something similar) to verify Angular Flex-Layout
has been
properly imported into your application.
home.component.html
<div class="flexDemoContainer">
<div fxLayout="row" fxLayout.xs="column" fxLayout.sm="column" fxFlex>
<div fxFlex> I'm above on mobile, and left on larger devices. </div>
<div fxFlex> I'm below on mobile, and right on larger devices. </div>
</div>
</div>
home.component.css
.flexDemoContainer {
border: solid 1px #red;
box-sizing: content-box !important;
}
-
Quick Links
-
Documentation
-
Demos
-
StackBlitz Templates
-
Learning FlexBox
-
History
-
Developer Guides
-
Contributing