Flutter ElevatedButtonを横丸にする

Flutter ElevatedButtonを横丸にする

Flutterで、ElevatedButtonを横丸にする手順を記述してます。「styleFrom」に「shape: const StadiumBorder()」を設定することで可能です。

環境

  • OS  windows11 pro 64bit
  • Flutter 3.3.7

ElevatedButtonを横丸にする

ElevatedButtonを横丸にするには、「styleFrom」で「shape: const StadiumBorder()」を設定します。

shape: const StadiumBorder()

実際に設定してみます。

        child: ElevatedButton(
          onPressed: () {},
          style: ElevatedButton.styleFrom(
            primary: Colors.blue, //ボタンの背景色
            minimumSize: Size(150, 50), // ボタンのサイズ
            shape: const StadiumBorder(),
          ),
          child: const Text(
            "Button",
            style: TextStyle(
              color: Color.fromARGB(255, 255, 255, 255), // ボタンのテキストの色
              fontSize: 12,
            ),
          ),
        ),

これで「ElevatedButton」が横丸なっていることが確認できます。