Skip to content

Instantly share code, notes, and snippets.

@analisboeta
Forked from diegohordi/ts
Created March 10, 2021 18:24
Show Gist options
  • Save analisboeta/511130bafe50a435aeb0d1dcec8467b5 to your computer and use it in GitHub Desktop.
Save analisboeta/511130bafe50a435aeb0d1dcec8467b5 to your computer and use it in GitHub Desktop.
Detect screen size Angular
import {BreakpointObserver} from '@angular/cdk/layout';
...
breakpointObserver.observe(['(max-width: 1024px)']).subscribe(result => {
if (result.matches) {
this.responsiveVersion = true;
} else {
this.responsiveVersion = false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment