Please enable JavaScript.
Coggle requires JavaScript to display documents.
Flutter (Remaster 2024), About code Flutter, flutter command - Coggle…
Flutter (Remaster 2024)
-
What :question:
Flutter is a Framework in Mobile Application used to create UI (User Interface) That can work across platforms, both iOS and Android.
-
-
-
-
UI
StatefulWidget
-
เหมาะสำหรับ ใช้กับ UI ที่ต้องการ update เมื่อมีการเปลี่ยนแปลง เช่น form, button changing color, counter, animation, slider
-
StatelessWidget
-
ใช้กับ UI ที่ไม่เปลี่ยนแปลง เช่น button, text, icon, image หรือโครงสร้างคงที่
-
-
-
-
About code Flutter
Immutable
-
flutter สามารถสร้าง widget ได้ครั้งเดียวและนำกลับมาใช้ซ้ำได้โดยไม่ต้องสร้างใหม่ทุกครั้งที่มีการ rebuild
key widget
super.key
-
การส่ง key เป็นสิ่งสำคัญในกรณีที่ต้องการเปรียบเทียบหรือจัดการ widget ที่เป็นเอกลักษณ์ โดยเฉพาะเมื่อโครงสร้างของ widget tree เปลี่ยนแปลง
-