[Flutter][Widget] DropDownButton

이상우·2022년 7월 20일
0
post-thumbnail

참고 문서
https://dkswnkk.tistory.com/234

코드

List<String> dropdownList = ['1', '2', '3'];
String selectedDropdown = '1';

  ..
  ..

DropdownButton(
    value: selectedDropdown,
    items: dropdownList.map((String item) {
      return DropdownMenuItem<String>(
        child: Text('$item'),
        value: item,
      );
    }).toList(),
    onChanged: (dynamic value) {
      setState(() {
        selectedDropdown = value;
      });
    },
  ),
profile
Flutter App Developer

0개의 댓글