3
2

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 3 years have passed since last update.

【Flutter】丸いElevatedButtonの実装

Posted at

作るもの

スクリーンショット 2021-01-10 21.18.53.png

実装

ElevatedButtonのプロパティstyleでボタンのスタイルを変更する。
丸い形は、ButtonStyleクラスのshapeプロパティに対してCircleBorderMaterialStateProperty.allメソッドで設定する。

MaterialStatePropertyについてはこちらの記事でも紹介しているので参考にしてください。

CircleButton.dart
import 'package:flutter/material.dart';

class CircleButton extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return ElevatedButton(
      child: Icon(
        Icons.add,
        color: Colors.white,
      ),
      style: ButtonStyle(
        minimumSize: MaterialStateProperty.all<Size>(Size(60, 60)),
        shape: MaterialStateProperty.all<CircleBorder>(CircleBorder(
          side: BorderSide(
            color: Colors.black,
            width: 1,
            style: BorderStyle.solid,
          ),
        )),
        backgroundColor: MaterialStateProperty.all<Color>(Colors.blue),
        elevation: MaterialStateProperty.all<double>(4.0),
      ),
    );
  }
}

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?