# flutter managing state
총 1개의 포스트
Flutter - layout, widget, managing state, constraint
Flutter document를 참조해서 위젯과 관련된 유용한 정보들을 요약했습니다. 요약한 정보이기 때문에 확실한 이해는 실제 코딩을 해보면서 깨우치는 것이 필요합니다. 1. Layout widget(LW) Visible widget(VW) flutter의 위젯은 Layout widget과 Visible widget으로 구분할 수 있다. LW은 Container, Center와 같은 위젯처럼 child나 children property가 있는 위젯이다. VW은 Text, Image 같은 위젯들이다. 그래서 일반적으로 LW이 VW을 감싼 형태다. 2. Standard widgets, Material widgets standart : Container, GridView, ListView, Stack Material widgets : Card, ListTile 3. Stateful widget, Stateless widget
2022년 9월 23일
·
0개의 댓글·
1