1
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?

【Flutter】ListTileを角丸にする

Last updated at Posted at 2024-09-12

こんにちは。
今回は、ListTileを角丸にする方法を紹介します。

方法

スクリーンショット 2023-08-13 20.18.51.png

ListTileを角丸にするには、引数「shape」を使います。
LisTileの引数「shape」にRoundedRectangleBorderを指定します。
RoundedRectangleBorderの引数「borderRadius」に角の丸みを指定します。
BorderRadiusクラスを使って角の丸みを指定します。

使用例

 ListTile(
            title: const Text('title'),
            leading: const Icon(Icons.account_circle),
            trailing: const Icon(Icons.heart_broken),
            tileColor: Colors.red,
            shape: RoundedRectangleBorder(
              borderRadius: BorderRadius.circular(10),
            ),
          )

実行例

スクリーンショット 2024-09-10 12.59.27.png

最後に

ここまで読んでいただき、ありがとうございました!
いいねしてくれたら、スキップして喜びます:heartpulse:

1
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
1
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?