0
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.

MyappからWidgetまでの基本構造、StatelessWidget と StatefullWidgetの違い flutter

Last updated at Posted at 2021-04-17

flutterの基本構造はこのサイトを見ると分かりやすいです。

つたない理解ですが、簡単にまとめると
Myapp
-MaterialApp(デザインの枠組み)
--Scaffold(デザインの枠組み)
---Center(中央に配置)
----text(テキストを表示)
の順に並んでいます。

MyAppの中には StatelessWidget あるいは StatefullWidget を入れるのですが、この違いについて書きます。下の画像はUdacityのflutter講座の中に出てきて、StatelessWidget と StatefullWidgetの違いについて説明しています。

flutterの講座
https://classroom.udacity.com/courses/ud905

StatelessWidgetは、 'アプリの使用中に状態が変わらない' もの(ボタンを押して色が変わるなど)、StatefullWidgetは 'アプリの使用中に状態が変わる' ものに使われます。Udacityの動画がわかりやすいので見てみてください。

image.png

0
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
0
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?