Adding icon to left of DropDownButton (expanded) in flutter
问题 I want to add icon to left of DropDownButton but can't find a way to do so. What I want to achieve is like this: I have tried following code but it places icon to right where I don't want it and it also overrides arrow icon: `@override Widget build(BuildContext context) { return Scaffold( body: Container( margin: EdgeInsets.only(top: 64.0, left: 16.0, right: 16.0), color: Colors.white, child: DropdownButton( icon: Icon( Icons.person, color: Colors.redAccent, size: 20.09, ), isExpanded: true,