I want to add label text for Dropdown Button. How can I do it.....And label text should be resize when we select value from Dropdown button.
Container(
width: MediaQuery.of(context).size.width * .71,
child: DropdownButton(
isExpanded: true,
iconSize: 15,
underline: Container(
child: Column(
children: [
Divider(
thickness: 1,
color: const Color(0xFFa5a5a5))
],
)),
value: dropdownvalue,
icon: Icon(Icons.keyboard_arrow_down),
items: items.map((String items) {
return DropdownMenuItem(
value: items,
child: Text(
items,
style: TextStyle(
fontSize: 10,
fontWeight: FontWeight.w500,
color: const Color(0xFFa5a5a5),
),
));
}).toList(),
onChanged: (newValue) {
setState(() {
dropdownvalue = newValue.toString();
});
},
),
),