How to use the @angular/flex-layout.VERSION.full function in @angular/flex-layout

To help you get started, we’ve selected a few @angular/flex-layout examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github angular / flex-layout / src / apps / demo-app / src / app / app.component.ts View on Github external
import {Component, ViewEncapsulation} from '@angular/core';

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

@Component({
  selector: 'demo-root',
  templateUrl: './app.component.html',
  encapsulation: ViewEncapsulation.None
})
export class AppComponent {
  version = VERSION.full;
}