2019年2月からFlutterの学習を始め、かなり将来性がありそうだと思ったので、学んだことを逐一記事に残していきたいと思っています。
Flutterとは? → https://speakerdeck.com/najeira/iosliang-dui-ying-falseapurikai-fa-2
今回は、
Flutterで画像を表示する方法について2種類の方法をメモします。
- アプリ内(アセット)の画像を表示する
- ネットから画像をダウンロードして表示させる
アプリ内(アセット)の画像を表示する
① 画像を配置する
② pubspec.yaml
を編集する
③ Image Widgetを配置する
画像を配置して、アプリに認識させる必要があります。
↓↓
####① 画像を配置する
プロジェクト直下にimages
フォルダを作成して、表示したい画像をその中に入れます。
####② pubspec.yaml
を編集する
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# ↓この部分を追加する↓
assets:
- images/sample.jpg
flutter
ブロックの中にassets
以下の内容を追加します。
images
フォルダ内の全ファイルを取り込みたい場合は次のように記述します。
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# ↓この部分を追加する↓
assets:
- images/
####③ Image Widgetを配置する
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
// ここを追加
child: Image.asset('images/sample.jpg'),
),
);
}
}
Image.asset(ファイル名)
でWidgetとして追加できます。
assets/
で指定した時も同様のパス指定をします。
ネットから画像をダウンロードして表示させる
① Image Widgetを配置する
コードを1行書くだけです。
↓↓
####① Image Widgetを配置する
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Image.network('https://yu1204eng.work/images/sample.jpg'),
),
);
}
}
たったこれだけで表示してくれます...!
非常に簡単に画像を表示させることが出来ました。
<参考>
https://flutter.dev/docs/development/ui/assets-and-images
https://nzigen.com/flutter-reference/2018-04-16-image.html