Category: Uncategorized

ionic week 3 การทำ icon splash screen และการทดสอบบน emulator

สร้าง project ใหม่ เข้าไป drive d ในโฟลเดอร์ชื่อเราพิมพ์ cmd บน address bar ด้านบน cmd ที่ขึ้นมาพิมพ์ ionic start day3_icon blank  แล้ว enter พิมพ์ cd day3_icon (หรือวิธีที่สอง copy ข้อความใน cmd โดยกด ctrl+c ในหน้าจอจะเป็น cd .\day3_icon…

ionic audio with HTML5

ไม่ต้องใช้ NativePlugin ก็ใช้ ความสามารถของ HTML5 เล่นเพลงได้เลย import { Component } from '@angular/core'; import { NativeAudio } from '@ionic-native/native-audio/ngx'; @Component({ selector: 'app-home', templateUrl: 'home.page.html', styleUrls: ['home.page.scss'] }) export class HomePage {…

natvieplugin.page.ts

import { Component, OnInit } from '@angular/core'; import { Flashlight } from '@ionic-native/flashlight/ngx'; @Component({ selector: 'app-nativeplugin', templateUrl: './nativeplugin.page.html', styleUrls: ['./nativeplugin.page.scss'], }) export class NativepluginPage implements OnInit { constructor(private flashlight: Flashlight)…