-1

我是新的应用程序开发。如何在颤动中为下拉菜单添加单独的文本样式,就像我需要为下拉菜单添加黑色文本颜色和为下拉菜单中的选定值添加白色文本颜色一样?

4

1 回答 1

0

你应该使用:

DropdownButton(
//Use style for dropdown text color
   style: TextStyle(
   color: Colors.blue,
    fontSize: 15,
  ),
  // use dropdownColor for color of flutter dropdown
  dropdownColor:Colors.green,
  //below is the hint of your dropdown
  hint: Text(
       'Select Month',
        style: TextStyle(
        color: Colors.black,
        fontSize: 15,
      ),
        textAlign: TextAlign.center,
    ),
),
于 2021-07-27T10:09:14.367 回答