3
3

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.

Flutter の基礎知識

Last updated at Posted at 2020-06-09

概要

久々に触るといろいろ忘れていたので備忘録。
公式ドキュメントが充実しているのがありがたい。

Flutter の基礎理解の流れとしては、サンプルプログラム(Project作成時にすでにあるカウンターアプリ)のmain.dartを理解すれば十分。

あとは必要に応じて公式ドキュメントを参照するのがbest だと思う。

サンプルの main.dart

以下 +αの補足

  • private なクラス名・メソッド名・変数名の先頭に_をつける。

Flutter は基本全てがWidget

UIも、widget を複数組み合わせて構築している。

  • Widget は immutable
    immutable (doesn't change)だが、頻繁に replaceされる。
    それは Widget の State が変わると Widget は再構築される設計だから。

State とはなんぞや。

  • 公式ページが超わかりやすい。
    - Widgetが持つ状態のこと。

なんのためにあるのか?

  • Flutter の設計で、state(状態)が変化したとき(例えばユーザーのボタンクリック時)そのWidget を 再構築するようになっている。
    • Flutter は画面描写が高速なのでこれが可能。
スクリーンショット 2020-06-09 11.58.22.png スクリーンショット 2020-06-09 12.05.28.png 図: flutter widget のStateには `App State`と`Ephemeral State`がある。
3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?