왜 써보려고 하는가? 로그인 기능을 만들려던 중 아래 사진과 같은 아이디 기억하기를 만들려던 참이었습니다.
체크박스 인 것은 알았지만, 막상 쓰려니 개념이 부족했음....을 깨닫고 Checkbox를 정리 해보고자 합니다. 간단한 예제 다음 예제는 공식 사이트를 참고하였습니다 https://api.flutter.dev/flutter/material/Checkbox-class.html Checkbox class - material library - Dart API A Material Design checkbox.
The checkbox itself does not maintain any state. Instead, when the state of the checkbox changes, the widget calls the onChanged callback.
Most widgets that use a checkbox will listen for the onChanged callback a...
#
checkbox
#
tristate
원문 링크 : [flutter] Checkbox 한번에 끝내기