Flutter SnackBarの右側にボタンを追加するサンプル

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
action: SnackBarAction(xxx)
SnackBarの右側にボタンを追加するには、引数「action」を使います。

使用例

SnackBar(
  content: Text('Snackbar test message'),
  action: SnackBarAction( //SnackBarActionを指定
    label: 'テストデータ',
    onPressed: () { // に呼び出す関数を指定
      //タップ処理コード
    },
  ),
),

 

Flutter

Posted by arkgame