どうも、ちょげ(@chogetarou)です。
ドロップダウンボタンの下線を無くす方法を紹介します。
方法

ドロップダウンボタンの下線を無くすには、引数「underline」を使います。
引数「underline」に何も設定しないContainerやSizedBoxなどを指定することで、下線を無くすことが出来ます。
以下は、Containerウェジェットを使った例です。
child: DropdownButton(
underline: Container(),
・・・
)

どうも、ちょげ(@chogetarou)です。
ドロップダウンボタンの下線を無くす方法を紹介します。
ドロップダウンボタンの下線を無くすには、引数「underline」を使います。
引数「underline」に何も設定しないContainerやSizedBoxなどを指定することで、下線を無くすことが出来ます。
以下は、Containerウェジェットを使った例です。
child: DropdownButton(
underline: Container(),
・・・
)
コメント