「Flutter/画像/画像viewer」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→サンプル) |
(→サンプル) |
||
行18: | 行18: | ||
); | ); | ||
</pre> | </pre> | ||
+ | |||
+ | 参考:https://qiita.com/kwmt@github/items/2e81b46d62beb091d18b |
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, );