feat(ios):照片上传数量

This commit is contained in:
2025-10-28 16:48:02 +08:00
parent 9b3ee731c2
commit 0cc51689be
2 changed files with 10 additions and 3 deletions

View File

@@ -133,7 +133,9 @@ class UploadImagesTool {
)
: CupertinoActionSheet(
title: const Text('上传图片'),
message: Text('请选择上传方式\n相册最多${max ?? 9}'),
message: (max == null || max == 0)
? null
: Text('请选择上传方式\n相册最多${max ?? 9}'),
actions: isAddOtherWidget != null
? <Widget>[
isAddOtherWidget,