0
0

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 1 year has passed since last update.

Flutter 3.3以降 Buttonレイアウト

Posted at

Flutterの3.3以降、ElevatedButtonのカスタムオプションで属性が変更されました。

スクリーンショット 2022-10-06 9.07.51.png

ElevatedButton(
  style: ElevatedButton.styleFrom(
    // 以前は primary属性
    backgroundColor: Colors.red,
    // 以前は  onPrimary属性
    foregroundColor: Colors.white,
  ),
  onPressed: () { },
  child: Text('ElevatedButton with custom foreground/background'),
)

FlatButton RaisedButton OutlineButtonウィジェットは廃止され、新しくTextButton ElevatedButton OutlinedButton になりましたので、使えそうなボタンをコピペできるようにまとめました。
スクリーンショット 2022-10-06 9.32.19.png
スクリーンショット 2022-10-06 9.33.43.png

ElevatedButton(
                  child: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.blueAccent,
                    foregroundColor: Colors.white,
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 9.36.29.png

ElevatedButton(
                  child: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.blueAccent,
                    foregroundColor: Colors.white,
                    shape: const StadiumBorder(),
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 9.38.53.png

OutlinedButton(
                  child: const Text('Button'),
                  style: OutlinedButton.styleFrom(
                    foregroundColor: Colors.black,
                    shape: RoundedRectangleBorder(
                      borderRadius: BorderRadius.circular(10),
                    ),
                    side: const BorderSide(color: Colors.blueAccent),
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 9.41.20.png

OutlinedButton(
                  child: const Text('Button'),
                  style: OutlinedButton.styleFrom(
                    foregroundColor: Colors.black,
                    shape: const StadiumBorder(),
                    side: const BorderSide(color: Colors.blueAccent),
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 9.43.16.png

ElevatedButton(
                  child: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.grey[200],
                    foregroundColor: Colors.blueAccent,
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 9.46.40.png

ElevatedButton.icon(
                  icon: const Icon(
                    Icons.star_outline,
                    color: Colors.blueAccent,
                  ),
                  label: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.grey[200],
                    foregroundColor: Colors.blueAccent,
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 10.00.32.png

ElevatedButton(
                  child: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.blue,
                    foregroundColor: Colors.white,
                    shape: BeveledRectangleBorder(
                      borderRadius: BorderRadius.circular(10),
                    ),
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 10.02.20.png

ElevatedButton(
                  child: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.blue,
                    foregroundColor: Colors.white,
                    shape: BeveledRectangleBorder(
                      borderRadius: BorderRadius.circular(10),
                    ),
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 10.06.35.png

ElevatedButton(
                  style: ElevatedButton.styleFrom(
                    shape: RoundedRectangleBorder(
                      borderRadius:
                          BorderRadius.only(topRight: Radius.circular(24)),
                    ),
                  ),
                  onPressed: () {},
                  child: Text('Button'),
                )

スクリーンショット 2022-10-06 10.22.09.png

ElevatedButton(
                  onPressed: () {},
                  child: Text("Button"),
                  style: ElevatedButton.styleFrom(
                      shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(30),
                  )),
                )

スクリーンショット 2022-10-06 10.24.07.png

ElevatedButton(
                  onPressed: () {},
                  child: Text("Button"),
                  style: ElevatedButton.styleFrom(
                      shape: RoundedRectangleBorder(
                          borderRadius: BorderRadius.only(
                              topLeft: Radius.circular(20),
                              topRight: Radius.elliptical(10, 40)
                              //  bottomLeft:, bottom left
                              // bottomRight: bottom right
                              ))),
                )

スクリーンショット 2022-10-06 10.26.57.png

ElevatedButton(
                  child: const Text('Btn'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.blue,
                    foregroundColor: Colors.white,
                    shape: const CircleBorder(
                      side: BorderSide(
                        color: Colors.blue,
                        width: 1,
                        style: BorderStyle.solid,
                      ),
                    ),
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 10.28.17.png

TextButton(
                  child: const Text('Button'),
                  style: TextButton.styleFrom(
                    foregroundColor: Colors.black,
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 10.33.18.png

 TextButton(
                  style: ButtonStyle(
                    foregroundColor: MaterialStateProperty.all<Color>(
                        Colors.lightBlueAccent),
                    overlayColor: MaterialStateProperty.resolveWith<Color?>(
                      (Set<MaterialState> states) {
                        if (states.contains(MaterialState.hovered))
                          return Colors.blue.withOpacity(0.04);
                        if (states.contains(MaterialState.focused) ||
                            states.contains(MaterialState.pressed))
                          return Colors.blue.withOpacity(0.12);
                        return null; // Defer to the widget's default.
                      },
                    ),
                  ),
                  onPressed: () {},
                  child: Text('Button'),
                )

スクリーンショット 2022-10-06 10.37.40.png

TextButton(
                  style: ButtonStyle(
                    foregroundColor: MaterialStateProperty.all<Color>(
                        Colors.lightBlueAccent),
                  ),
                  onPressed: () {},
                  child: Text(
                    'Button',
                    style: TextStyle(
                        fontSize: 20, decoration: TextDecoration.underline),
                  ),
                )

スクリーンショット 2022-10-06 10.38.59.png

OutlinedButton(
                  style: OutlinedButton.styleFrom(
                    shape: StadiumBorder(),
                    side: BorderSide(width: 2, color: Colors.lightBlueAccent),
                  ),
                  onPressed: () {},
                  child: Text(
                    'Button',
                    style: TextStyle(
                        fontSize: 16, decoration: TextDecoration.underline),
                  ),
                )

スクリーンショット 2022-10-06 10.40.17.png

ElevatedButton(
                  child: const Text('Button'),
                  style: ElevatedButton.styleFrom(
                    backgroundColor: Colors.lightBlueAccent,
                    foregroundColor: Colors.white,
                    elevation: 16,
                  ),
                  onPressed: () {},
                )

スクリーンショット 2022-10-06 10.41.37.png

ElevatedButton(
                  child: Container(
                    decoration: BoxDecoration(
                      gradient: LinearGradient(
                        colors: <Color>[
                          Colors.lightBlueAccent,
                          Colors.blue,
                          Colors.blueAccent,
                        ],
                      ),
                    ),
                    padding: const EdgeInsets.all(10),
                    child: const Text('Button'),
                  ),
                  style: ElevatedButton.styleFrom(
                    padding: const EdgeInsets.all(0),
                  ),
                  onPressed: () {},
                )
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?