独学プログラミング演習
テキスト | 日付 | 進捗状況 |
---|---|---|
動かして学ぶ!Flutter開発入門 | 2023/12/23 | Chapter 4 Firebaseとの連携 finished ->コード |
コンテンツ | 日付 | 進捗状況 |
---|---|---|
Flutterで始めるモバイルアプリ開発 | 2024/05/19 | 第27回 FlutterのCanvasを使ってみよう! 基本的な使い方から簡単なチャート作成まで解説finished |
端末 | 環境/FW | 最終更新 |
---|---|---|
InsiderDev | Flutter 3.24.5 | 2024/11/24 |
Android Studio Meerkat 2024.3.1 Canary 3 | 2024/11/23 | |
Visual Studio Community 2022 17.13.0 Preview 1.0 | 2024/11/15 |
flutter dev
flutter doctor -v
[✓] Flutter (Channel stable, 3.24.5, on Microsoft Windows [Version 10.0.26120.2415], locale ja-JP)
• Flutter version 3.24.5 on channel stable at C:\Users\taish\dev\flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision dec2ee5c1f (10 days ago), 2024-11-13 11:13:06 -0800
• Engine revision a18df97ca5
• Dart version 3.5.4
• DevTools version 2.37.3
[✓] Windows Version (Installed version of Windows is version 10 or higher)
[✓] Android toolchain - develop for Android devices (Android SDK version 35.0.0)
• Android SDK at C:\Users\taish\AppData\Local\Android\sdk
• Platform android-35, build-tools 35.0.0
• Java binary at: C:\Program Files\Android\Android Studio\jbr\bin\java
• Java version OpenJDK Runtime Environment (build 21.0.5+-12651406-b631.16)
• All Android licenses accepted.
[✓] Chrome - develop for the web
• Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe
[✓] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.13.0 Preview 1.0)
• Visual Studio at C:\Program Files\Microsoft Visual Studio\2022\Preview
• Visual Studio Community 2022 version 17.13.35507.96
• The current Visual Studio installation is a pre-release version. It may not be supported by Flutter yet.
• Windows 10 SDK version 10.0.22621.0
[✓] Android Studio (version 2024.3)
• Android Studio at C:\Program Files\Android\Android Studio
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build 21.0.5+-12651406-b631.16)
[✓] IntelliJ IDEA Community Edition (version 2024.3)
• IntelliJ at C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2024.3
• Flutter plugin version 82.2.4
• Dart plugin version 243.22562.3
[✓] VS Code (version 1.95.3)
• VS Code at C:\Users\taish\AppData\Local\Programs\Microsoft VS Code
• Flutter extension version 3.100.0
[✓] Connected device (3 available)
• Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.26120.2415]
• Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.86
• Edge (web) • edge • web-javascript • Microsoft Edge 132.0.2957.11
[✓] Network resources
• All expected network resources are available.
flutterの更新
flutter upgrade
flutter 3.24.3 / Android Studio Ladybug
Build エラーシューティング
flutter doctor -v
npm install -g firebase-tools
firebase login
dart pub global activate flutterfire_cli
flutter create <Project Name>
cd <ProjectDirectory>
flutterfire configure --project={firebaseのプロジェクト名}
カスタムフォントの利用 公式ドキュメント
Android Studio Update