Answers for "DropdownButton class - material library - Flutter API"

5

DropdownButton class - material library - Flutter API

String dropdownValue = 'One';
DropdownButton<String>(
            value: dropdownValue,
            onChanged: (String? newValue) {
              setState(() {
                dropdownValue = newValue!;
              });
            },
            items: <String>['One', 'Two', 'Free', 'Four']
                .map<DropdownMenuItem<String>>((String value) {
              return DropdownMenuItem<String>(
                value: value,
                child: Text(value),
              );
            }).toList(),
          ),
Posted by: Guest on September-11-2021

Code answers related to "DropdownButton class - material library - Flutter API"

Code answers related to "Dart"

Browse Popular Code Answers by Language