📜  颤动下拉菜单背景颜色 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:20.852000             🧑  作者: Mango

代码示例1
// Wrap it in a Theme() Widget like this
Theme(
    data: Theme.of(context).copyWith(canvasColor: Colors.green),
    child: DropdownButton(
                  value: yourValue,
                  icon: Icon(Icons.keyboard_arrow_down, color: Colors.white),
                  onChanged: (value) {
                    
                  },
                  items: yourItems,
                  style: TextStyle(color: Colors.white),
         ),
),