Skip to content

Instantly share code, notes, and snippets.

@silverio
silverio / shrink.ts
Last active August 28, 2016 02:29
Ionic 2 header shrink
import {ViewChild, Injectable} from "@angular/core";
import {Platform} from 'ionic-angular';
@Injectable()
export class Shrink {
scrollPosition: number = 0;
lastScrollTop: number = 0;
style: any;
height: number;
constructor(private platform: Platform) {