LoginSignup
0
0

More than 3 years have passed since last update.

[flutter]はじめてのflutter5

Posted at

今日やること

-Flutterで画像表示をできるようになる

画像表示(リンク)

Image.network(
'URL'
)

もしくは

Image.network(
'URL'
)

画像表示(アセット)

imgなどのディレクトリに保存し、
pubspec.yamlに

flutter:
  assets:
   - img/py.jpg

main.dartに

Image.asset(
'パス'
)
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