Skip to content

Instantly share code, notes, and snippets.

View itshazlan's full-sized avatar
💻
Focusing

Hamzah Alvana itshazlan

💻
Focusing
View GitHub Profile
@klemensz
klemensz / hide-header.directive.ts
Last active September 30, 2023 20:35
Hide header on scroll in Ionic 5
import { Directive, HostListener, Input, OnInit, Renderer2 } from '@angular/core';
import { DomController } from '@ionic/angular';
/**
* Moves away the header when scrolling down.
*/
@Directive({
selector: '[appHideHeader]',
})
export class HideHeaderDirective implements OnInit {