1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Android Studio で Flutter のテンプレートプログラムを起動してみよう

Posted at

Flutter のテンプレートプログラム?

ようはサンプルプログラム。
Android Studio で自動的に生成してくれるテンプレート。
生成されたテンプレートを変更していく事で、プログラムを作っていけるようになっている。
とりあえず「動いたのをみてみなきゃ、開発環境が正しいか分からないだろ?」ってこと。

Android Studio で Flutter テンプレートプログラムを作る

Android Studio を起動する。プロジェクトが開かれてたら閉じる。

  1. ↓この画面の「Start a new Flutter Project」をクリックする。
    image.png
  2. 何も考えずに「Flutter Application」のまま「Next」をクリックする。
    image.png
  3. 「Configure the new Flutter application」の設定をする。終わったら「Next」をクリックする。
    1. Project name を決める。アプリの名前のこと。
    2. Flutter SDK Path はスルー。大抵はそのままでいい。
    3. Project location を決める。アプリのフォルダ名のこと。
    4. Description を決める。アプリの説明のこと。
  4. 「Set the package name」の設定をする。終わったら「Finish」をクリックする。
    Package name は、あとでアプリを公開したりするときにも関わるので、ちゃんと決めておく事。
    ソースを使い回すときにも関わるから気をつけてね。
    1. Package name を決める。アプリ公開時のパッケージ名にもなるので注意。
    2. AndroidX はほっといて良さそう。
    3. Include Kotlin ~は、関係ないのでほっとく。
    4. Include Swift support ~も、関係ないのでほっとく。
  5. メニューから Run すれば Build されて、実行される。

実行結果が見れなかった場合は、環境作成がうまくいってないので確認する。

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?