flutter_image_form_field:将图像上传到Flutter表单

时间:2024-05-26 05:00:58
【文件属性】:

文件名称:flutter_image_form_field:将图像上传到Flutter表单

文件大小:16KB

文件格式:ZIP

更新时间:2024-05-26 05:00:58

Dart

ImageFormField 以Flutter Form处理图像上传。 用法 为了完全自定义照片上传字段,需要几个回调和类。 在大多数情况下,您将混合来自远程源和本地上载的照片。 对于这些,适配器层很有用: class ImageInputAdapter { /// Initialize from either a URL or a file, but not both. ImageInputAdapter ({ this .file, this .url }) : assert (file != null || url != null ), assert (file != null && url == null ), assert (file == null && url != null ); /// An image file final Fil


【文件预览】:
flutter_image_form_field-master
----.gitignore(683B)
----pubspec.yaml(303B)
----README.md(3KB)
----CHANGELOG.md(550B)
----LICENSE(1KB)
----example()
--------pubspec.yaml(533B)
--------README.md(195B)
--------image_form_example_android.iml(1KB)
--------lib()
--------image_form_example.iml(896B)
----.travis.yml(50B)
----lib()
--------image_form_field.dart(55B)
--------src()

网友评论