2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

flutterでボタンやラジオボタンが有効にならない

Last updated at Posted at 2019-11-04

flutterでボタンやチェックボックスが有効にならない

以下のようにカラーを青に指定していても灰色になり無効、非活性になることがある
ラジオボタンの場合、押しても反応がない

スクリーンショット 2019-11-04 11.31.01.png
        RaisedButton(
          onPressed: null, // 押した時の処理
          color: Colors.blue,
          child: const Text(
            '更新',
            style: TextStyle(
                color:Colors.white,
                fontSize: 20.0
            ),),
        )

解決方法

ボタンなら onPressed
ラジオボタンやドロップダウンなら onChangedを実装する

この値がnullになっていたり、存在しないとこの状態になる

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?