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

【flutter】Containerの枠線に色をつけるには?

Last updated at Posted at 2023-08-23

今回は、Containerの枠線に色をつけたい時の処理について記事を書きたいと思います。
最後まで、みていただけたら幸いです。

Border

Containerの枠線に色を付けるには、外観や装飾を設定するためdecorationを利用し、枠線色をつけるためBoxDecorationのborderプロパティを使用します。

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: ~~~, // 枠線の色を設定
    ),
  ),
)

 Container(
    height: 150,
    width: 200,
    decoration: BoxDecoration(
      border: Border.all(color: Colors.blue, // 枠線の色を設定
                         width: 2),// 枠線の幅を設定
    ),
    ),

スクリーンショット 2023-08-17 11.46.22.png

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