Skip to content Skip to sidebar Skip to footer

Angular Directive To Adjust Your Component Height As Per Window Height Dynamically

Angular directive to adjust the height of your div/components(Elements) Dynamically as per screen

Solution 1:

    import { Directive, ElementRef, Renderer2, AfterViewInit } from '@angular/core';

@Directive({
  selector: '[appAutoFullHeight]'
})
export class AutoFullHeightDirective implements AfterViewInit {
  constructor(
    private el: ElementRef,
    private renderer: Renderer2
  ) {
    const windowHeight = window.innerHeight > 600 ? window.innerHeight : 600;
    const calculatedheight = `${windowHeight - 150}px`; // can be simply windowheight but you can do the adjuscement here
    this.renderer.setStyle(this.el.nativeElement, 'height', calculatedheight);

  }

  ngAfterViewInit() {

  }

}

Post a Comment for "Angular Directive To Adjust Your Component Height As Per Window Height Dynamically"