get angular size code example
Example: get angular width
// 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;
}