Answers for "flutter dropdownbutton overflow"

0

flutter dropdown overflow

//use the isExpanded property for DropDownButton
child: new DropdownButton<String>(
	isExpanded: true,
    ...
Posted by: Guest on January-18-2021
0

flutter dropdownbutton stackoverflow

DropdownButton(
    isExpanded: true, //Step 1
    items: [
        new DropdownMenuItem(
            child: Text("Long text that overflow the size.. wrapped or ellipsized", 
            overflow: TextOverflow.ellipsis),  //Step 2
        ),
    ],
    onChanged: (val) { }
)
Posted by: Guest on October-27-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language