记录一下用flutter开发过程中遇到的问题,随缘更新~

DropdownButton的默认分割线,在自身是没办法取消的。在我怀疑Google硬编码的时候,发现了DropdownButtonHideUnderline,DropdownButton的分割线就是通过DropdownButtonHideUnderline实现的,灵机一动用DropdownButtonHideUnderline包裹DropdownButton同时取消了颜色属性,果然DropdownButton的分割线没有了。

 DropdownButtonHideUnderline(
        child: DropdownButton(
          iconSize: 0,
          items: itemList,
          hint: hit,
          isExpanded: true,
          onChanged: change,
        ),
      )