/flutter-wechat-upload-image

基于flutter封装的仿照微信朋友圈图片上传的组件封装

flutter-wechat-upload-image

初衷

在实际APP开发中,像微博或者微信朋友圈的图片上传是必不可少的组件,支持拍照、选择相册、换序,经过封装,以此分享

使用方法

  • 先把upload_image.dart拷贝到自己的公共组件目录中
  • pubspec.yaml中安装
reorderable_grid: ^1.0.2
images_picker: ^1.2.7
  • 使用的地方
Expanded(
    child: UploadImage(
      padding: Common.edge_10_20_30,
  crossAxisSpacing: Common.w_12,
  mainAxisSpacing: Common.w_12,
  crossAxisCount: 3,
  maxUploadCount: 9,
  imgList: _imgList,
)),

效果

image image image image