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】Imageのサイズが変わらないときに試してみる

Posted at

どういうことか

こんな感じで書いているが、画像のサイズが変更されない。

Image.asset(
  'assets/user_icon.png',
  color: Colors.grey,
  width: 12,
  height: 12,
),

なんとかする

Padding(
  padding: const EdgeInsets.all(10.0),
  child: Image.asset(
    'assets/user_icon.png',
    height: 12,
    fit: BoxFit.fill,
  ),
),

BoxFit を書いてないからか??と思ったけどそういうことではないらしい。

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?