I have following code snippet :
home.html :
<ion-item>
<ion-label>Date:</ion-label>
<ion-label class="alignme">{{todayDate | date: "MM/dd/yy" }}</ion-label>
</ion-item>
home.ts:
import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';
@Component({
templateUrl: 'build/pages/home/home.html'
})
export class HomePage {
this.todayDate = new Date();
}
While loading application on device it is showing blank screen . When i remove pipe from todayDate , it's showing current date value.