サイトの画像を表示する
今回の手順
1.使いたい画像のurlをとってくる
2.urlを記述する
使いたい画像のurlをとってくる
画像アドレスをコピーを選択。
urlを記述する
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
child: Image.network(
'https://1.bp.blogspot.com/-SWOiphrHWnI/XWS5x7MYwHI/AAAAAAABUXA/i_PRL_Atr08ayl9sZy9-x0uoY4zV2d5xwCLcBGAs/s1600/pose_dance_ukareru_man.png'),
),
Image.network()の部分に先ほど取ってきた画像をペーストする
参考記事
Flutterで画像を表示する方法【まとめ】 - Qiita
2019年2月からFlutterの学習を始め、かなり将来性がありそうだと思ったので、学んだことを逐一記事に残していきたいと思っています。Flutterとは? → …