import {Page, Platform} from 'ionic/ionic'; import {forwardRef} from 'angular2/angular2'; import {AndroidAttribute} from '../../helpers'; @Page({ templateUrl: 'inputs/segment/template.html', directives: [forwardRef(() => AndroidAttribute)] }) export class SegmentPage{ constructor(platform: Platform) { this.platform = platform; this.pet = "puppies"; this.isAndroid = platform.is('android'); } }