「Flutter/画像/画像viewer」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→サンプル) |
|||
| 行12: | 行12: | ||
<pre> | <pre> | ||
import 'package:photo_view/photo_view.dart'; | import 'package:photo_view/photo_view.dart'; | ||
| + | PhotoView photoView = PhotoView( | ||
| + | imageProvider: NetworkImage(imageUrl), | ||
| + | minScale: PhotoViewComputedScale.contained * 1.0, | ||
| + | maxScale: 2.0, | ||
| + | ); | ||
</pre> | </pre> | ||
2020年1月17日 (金) 11:23時点における版
インストール
pubspec.yaml
dependencies: photo_view: ^0.9.1
公式
https://pub.dev/packages/photo_view
サンプル
import 'package:photo_view/photo_view.dart';
PhotoView photoView = PhotoView(
imageProvider: NetworkImage(imageUrl),
minScale: PhotoViewComputedScale.contained * 1.0,
maxScale: 2.0,
);
