簡體   English   中英

更改 DropdownButton 菜單的陰影顏色

[英]Change the shadow color of the DropdownButton menu

是否可以更改 DropdownButton 菜單的陰影顏色?

下拉按鈕菜單

用容器包裹下拉按鈕並為其添加陰影。 使下拉按鈕的高度為0

為 dropdownButton 添加裝飾並為陰影設置顏色,例如:

decoration: BoxDecoration(
    color: Colors.white,
    borderRadius: BorderRadius.only(
      topLeft: Radius.circular(10),
        topRight: Radius.circular(10),
        bottomLeft: Radius.circular(10),
        bottomRight: Radius.circular(10)
    ),
    boxShadow: [
      BoxShadow(
        color: Colors.grey.withOpacity(0.5),
        spreadRadius: 5,
        blurRadius: 7,
        offset: Offset(0, 3), // changes position of shadow
      ),
    ],
  ),

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM