ImagePreview 图片预览

使用范例

import 'package:flutter_vant_kit/main.dart';

List<Widget> images = [
  Image.network("https://img.yzcdn.cn/vant/apple-1.jpg"),
  Image.network("https://img.yzcdn.cn/vant/apple-2.jpg"),
  ...
];

showDialog(
  context: context,
  barrierDismissible: true,
  builder: (BuildContext context) {
    return ImagePreview(
      images: images,
    );
  }
);

更多例子请参考Demo

API

Demo截图

Last updated