Dapatkan lebar sudut

// to get it on init:
public innerWidth: any;
ngOnInit() {
    this.innerWidth = window.innerWidth;
}

// if you wanna keep it updated on resize:
@HostListener('window:resize', ['$event'])
onResize(event: any) {
  this.innerWidth = window.innerWidth;
}
Marton