|
2 | 2 | import 'package:dart_rss/dart_rss.dart';
|
3 | 3 | import 'package:file_selector/file_selector.dart';
|
4 | 4 | import 'package:fluent_ui/fluent_ui.dart';
|
| 5 | +import 'package:flutter/foundation.dart'; |
5 | 6 | import 'package:flutter_riverpod/flutter_riverpod.dart';
|
6 | 7 | import 'package:flutter_screenutil/flutter_screenutil.dart';
|
7 | 8 | import 'package:jiffy/jiffy.dart';
|
@@ -60,30 +61,31 @@ class _RssCmcCardState extends ConsumerState<RssCmcCard> {
|
60 | 61 | },
|
61 | 62 | ),
|
62 | 63 | ),
|
63 |
| - Tooltip( |
64 |
| - message: '内置下载', |
65 |
| - child: IconButton( |
66 |
| - icon: Icon(FluentIcons.download, color: color), |
67 |
| - onPressed: () async { |
68 |
| - var saveDir = await getDirectoryPath(); |
69 |
| - if (saveDir == null || saveDir.isEmpty) { |
70 |
| - if (context.mounted) await BtInfobar.error(context, '未选择下载目录'); |
71 |
| - return; |
72 |
| - } |
73 |
| - var check = await ref.read(dttStoreProvider.notifier).addTask( |
74 |
| - item, |
75 |
| - saveDir, |
76 |
| - ); |
77 |
| - if (check) { |
78 |
| - if (context.mounted) { |
| 64 | + if (kDebugMode) |
| 65 | + Tooltip( |
| 66 | + message: '内置下载', |
| 67 | + child: IconButton( |
| 68 | + icon: Icon(FluentIcons.download, color: color), |
| 69 | + onPressed: () async { |
| 70 | + var saveDir = await getDirectoryPath(); |
| 71 | + if (saveDir == null || saveDir.isEmpty) { |
| 72 | + if (context.mounted) { |
| 73 | + await BtInfobar.error(context, '未选择下载目录'); |
| 74 | + } |
| 75 | + return; |
| 76 | + } |
| 77 | + var check = await ref.read(dttStoreProvider.notifier).addTask( |
| 78 | + item, |
| 79 | + saveDir, |
| 80 | + ); |
| 81 | + if (check && context.mounted) { |
79 | 82 | await BtInfobar.success(context, '添加下载任务成功');
|
| 83 | + return; |
80 | 84 | }
|
81 |
| - } else { |
82 | 85 | if (context.mounted) await BtInfobar.warn(context, '已经在下载列表中');
|
83 |
| - } |
84 |
| - }, |
| 86 | + }, |
| 87 | + ), |
85 | 88 | ),
|
86 |
| - ), |
87 | 89 | Tooltip(
|
88 | 90 | message: '打开链接',
|
89 | 91 | child: IconButton(
|
|
0 commit comments