ในบทเรียนรู้นี้มาทำ Web โดยใช้ Flutter นะครับ ก่อนอื่น Flutter สำหรับ Web ยังไม่ Stable นะครับ ให้เลือก channel ที่เป็น beta ก่อนนะครับ โดยใช้คำสั่งนี้
flutter channel beta
flutter upgrade
flutter config --enable-web
จากนั้นสร้าง Project ด้วยคำสั่ง
flutter create myweb
จากนั้นทดสอบ run
cd myweb
flutter run -d chrome
จะปรากฏหน้า Web ดังนี้
ติดตั้ง Package เพิ่มเติม 2 Package http และ url_launcher ในไฟล์ pubspec.yaml
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
http: any
url_launcher: any
ความคิดเห็น