- 上游: github.com/OpenIMSDK/openim-flutter-demo tag 3.8.3-patch.3 commit b3dfdb1e8aaeaaf6f0793e10cadd20d5c184a31f - 并行目录 mobile-next/ 原样导入(含 LICENSE),不覆盖现网 mobile/ - 锁定 Flutter 3.24.5 / Dart 3.5.4 / JDK 17 / Gradle 7.6.3 / AGP 7.3.1 - 实测 Android debug 与 release 构建均成功(见 docs/mobile-next-baseline-import.md) - 本提交可单独回退:git revert 1db1229(重写前) Co-authored-by: multica-agent <github@multica.ai>
67 lines
3.1 KiB
Dart
67 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_download_manager/flutter_download_manager.dart';
|
|
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:openim_common/openim_common.dart';
|
|
|
|
class FileDownloadProgressView extends StatelessWidget {
|
|
FileDownloadProgressView(this.message, {Key? key}) : super(key: key);
|
|
final Message message;
|
|
final logic = Get.find<DownloadController>();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final url = message.fileElem?.sourceUrl;
|
|
return Obx(() => SizedBox(
|
|
width: 38.w,
|
|
height: 44.h,
|
|
child: message.isFileType && null != logic.downloadTaskList[url]
|
|
? ValueListenableBuilder(
|
|
valueListenable: logic.downloadTaskList[url]!.status,
|
|
builder: (_, status, child) {
|
|
return ValueListenableBuilder(
|
|
valueListenable: logic.downloadTaskList[url]!.progress,
|
|
builder: (_, progress, child) {
|
|
return (status == DownloadStatus.downloading || status == DownloadStatus.paused || status == DownloadStatus.queued)
|
|
? Stack(
|
|
alignment: Alignment.center,
|
|
children: [
|
|
ImageRes.fileMask.toImage
|
|
..width = 38.w
|
|
..height = 44.h,
|
|
SizedBox(
|
|
width: 22.w,
|
|
height: 22.w,
|
|
child: Stack(
|
|
alignment: Alignment.center,
|
|
children: [
|
|
CircularProgressIndicator(
|
|
backgroundColor: Styles.c_FFFFFF,
|
|
color: Styles.c_0089FF,
|
|
strokeWidth: 1.5,
|
|
value: progress,
|
|
),
|
|
if (status == DownloadStatus.downloading)
|
|
ImageRes.progressPause.toImage
|
|
..width = 16.w
|
|
..height = 16.h,
|
|
if (status == DownloadStatus.paused)
|
|
ImageRes.progressGoing.toImage
|
|
..width = 16.w
|
|
..height = 16.h,
|
|
],
|
|
),
|
|
)
|
|
],
|
|
)
|
|
: const SizedBox();
|
|
},
|
|
);
|
|
},
|
|
)
|
|
: null,
|
|
));
|
|
}
|
|
}
|