반응형
// platform 확인을 위한 모듈 추가
import { Platform } from 'ionic-angular';
// app.component.ts 파일에서 플랫폼 확인
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | @Component({ templateUrl: 'app.html' }) export class MyApp { rootPage = HomePage; constructor(platform: Platform) { platform.ready().then(() => { if (this.platform.is('android')) { console.log("running on Android device!"); } if (this.platform.is('ios')) { console.log("running on iOS device!"); } if (this.platform.is('mobileweb')) { console.log("running in a browser on mobile!"); } }); } } | cs |
반응형
'하이브리드 > 아이오닉' 카테고리의 다른 글
ionic 파일구조 설명 (0) | 2018.05.27 |
---|---|
아이오닉 실행방법 (0) | 2018.05.27 |
ionic back button 제거 (0) | 2018.05.27 |
백그라운드 상태에서 활성화 되었을때 동작 수행 (0) | 2018.05.27 |
UI 요소 동적으로 disabled 처리 (0) | 2018.05.27 |