まだどこにもないアプリを作る

アプリ開発でつまづいたところなどを中心に記事にして行きます。

2021-09-25から1日間の記事一覧

Flutter - Platform.isAndroidが出てこないerror: The name 'Platform' is defined in the libraries 'dart:html' and 'dart:io'. (ambiguous_import at [flutterlab_admob] lib/pages/point_list_page.dart:36)

stackoverflow.com ↑こちらのサイト様を参考にさせていただきました。 Platform.isAndroidと打ち込んでもうまく行かない場合は、 import 'dart:io' as io; をインポートしましょう。 そして使うときは io.Platform.isAndroid Platformの前にio.をつけましょう…

Flutterプロジェクトに画像を追加の際のエラー Error on line 48, column 4: Expected a key while parsing a block

Error detected in pubspec.yaml:Error on line 48, column 4: Expected a key while parsing a block mapping. ╷48 │ assets: │ ^ ╵Please correct the pubspec.yaml file at /Users/xxx/StudioProjects/pj名/pubspec.yaml Flutterプロジェクトに画像を追加…