提交 85dbcfac authored 作者: shixiaochen's avatar shixiaochen

1、修复上传图片,关闭底部弹框时,跳转相册问题;

上级 1c28a7ab
...@@ -137,7 +137,7 @@ class _ComplaintWebPageState extends State<ComplaintWebPage> { ...@@ -137,7 +137,7 @@ class _ComplaintWebPageState extends State<ComplaintWebPage> {
/// 选择图片底部弹框 /// 选择图片底部弹框
Future<List<String>> _showImagePicker(context) async { Future<List<String>> _showImagePicker(context) async {
ImageSource source = ImageSource.gallery; ImageSource? source;
await showModalBottomSheet( await showModalBottomSheet(
backgroundColor: Colors.transparent, backgroundColor: Colors.transparent,
isScrollControlled: true, isScrollControlled: true,
...@@ -150,7 +150,9 @@ class _ComplaintWebPageState extends State<ComplaintWebPage> { ...@@ -150,7 +150,9 @@ class _ComplaintWebPageState extends State<ComplaintWebPage> {
}); });
}, },
); );
var list = await _convertImagePicker(source); debugPrint("source-->$source");
if (source == null) return [];
var list = await _convertImagePicker(source!);
return list; return list;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论