Skip to content

Instantly share code, notes, and snippets.

View analisboeta's full-sized avatar
😃
Angular FTW

Ana Lourenço analisboeta

😃
Angular FTW
  • Lisbon, Portugal
View GitHub Profile
@analisboeta
analisboeta / ts
Created March 10, 2021 18:24 — forked from diegohordi/ts
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;
}
});