반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Flutter
- 카카오
- GetX
- datetime
- 데스크테리어
- xcode
- GitHub
- 라이언
- list
- 데스크셋업
- error
- AppleSilicon
- listview
- 내돈내산
- M1
- sqflite
- 간단리뷰
- AppBar
- visualstudiocode
- TextField
- swift
- database
- 춘식
- react
- wrap
- VSCode
- Git
- ios
- Android
- 플러터
Archives
- Today
- Total
목록Dropbox (1)
welcome to my blog
[Flutter] DropdownButton
mfc에서 combobox와 같은 기능을 가진 dropdownbutton 정리 String dropdownValue = '1'; List itemList = ['1', '2', '3', '4','5','6','7','8']; DropdownButton( value: dropdownValue, menuMaxHeight: 150, items: itemList.map((String itemText) { return DropdownMenuItem( value: itemText, child: SizedBox( child: Text(itemText)), ); }).toList(), onChanged: (String? newValue) { setState(() { dropdownValue = newValue!; })..
Flutter
2021. 12. 10. 20:18