2026-01-08 flutter Flutter 3.x のルーティング: tp_router はルートテーブルを消し去ろうとする (そしてそれは魅力的なアイデア) tp_router は手動のルートテーブルを排除するジェネレーター駆動の Flutter ルーターです。ページに注釈を付け、build_runner を実行し、文字列ベースのパスではなく型付き API でナビゲートします。
2023-10-30 flutter 修正方法: MissingPluginException: No implementation found for method getAll Flutter の `MissingPluginException` 'No implementation found for method getAll' を、shared_preferences や package_info_plus などの類似プラグインで解消する方法を解説します。ProGuard、プラグイン登録、minSdkVersion、ホットリスタートなどを取り上げます。
2023-10-09 flutter Flutter NoSuchMethod: the method was called on null null のオブジェクト参照に対してメソッドを呼び出したときに発生する Flutter のエラーです。コールスタックとブレークポイントを使った NoSuchMethod の原因特定と修正方法を解説します。
2023-08-18 flutter Flutter 'The getter accentColor isn't defined for the class ThemeData' を直す このエラーの最も多い原因は、Flutter のアップグレード (flutter upgrade) によって、既存のコードやプロジェクトの依存関係との互換性が失われたことです。Theme.of(context).accentColor プロパティは Flutter 1.17 から非推奨で、現行バージョンでは完全に削除されたため、このエラーが出ます。代わりに何を使うか もしくは...
2023-08-18 flutter Flutter: Your project requires a newer version of the Kotlin Gradle plugin build.gradle の ext.kotlin_version を最新の Kotlin リリースに更新して、Flutter の 'Your project requires a newer version of the Kotlin Gradle plugin' エラーを解消する方法を解説します。