improve ui

This commit is contained in:
2024-11-05 15:27:46 +08:00
parent b49e528ff4
commit adb6cdd0c1
6 changed files with 39 additions and 11 deletions

View File

@@ -19,7 +19,7 @@
"Select": "选择", "Select": "选择",
"Imported @a comics": "已导入 @a 部漫画", "Imported @a comics": "已导入 @a 部漫画",
"Downloading": "下载中", "Downloading": "下载中",
"Back": "返回", "Back": "后退",
"Delete": "删除", "Delete": "删除",
"Full Screen": "全屏", "Full Screen": "全屏",
"Auto Page Turning": "自动翻页", "Auto Page Turning": "自动翻页",
@@ -156,7 +156,18 @@
"Export App Data": "导出应用数据", "Export App Data": "导出应用数据",
"Import App Data": "导入应用数据", "Import App Data": "导入应用数据",
"Export": "导出", "Export": "导出",
"Download Threads": "下载线程数" "Download Threads": "下载线程数",
"Update Time": "更新时间",
"Copy ID": "复制ID",
"Copy URL": "复制URL",
"Create": "创建",
"Folder Name": "文件夹名称",
"Ranking": "排行",
"Download Selected": "下载选中",
"Download All": "下载全部",
"Order": "顺序",
"minAppVersion @version is required": "需要最低App版本 @version",
"Remove": "移除"
}, },
"zh_TW": { "zh_TW": {
"Home": "首頁", "Home": "首頁",
@@ -179,7 +190,7 @@
"Select": "選擇", "Select": "選擇",
"Imported @a comics": "已匯入 @a 部漫畫", "Imported @a comics": "已匯入 @a 部漫畫",
"Downloading": "下載中", "Downloading": "下載中",
"Back": "返回", "Back": "後退",
"Delete": "刪除", "Delete": "刪除",
"Full Screen": "全螢幕", "Full Screen": "全螢幕",
"Auto Page Turning": "自動翻頁", "Auto Page Turning": "自動翻頁",
@@ -315,6 +326,17 @@
"Export App Data": "匯出應用數據", "Export App Data": "匯出應用數據",
"Import App Data": "匯入應用數據", "Import App Data": "匯入應用數據",
"Export": "匯出", "Export": "匯出",
"Download Threads": "下載線程數" "Download Threads": "下載線程數",
"Update Time": "更新時間",
"Copy ID": "複製ID",
"Copy URL": "複製URL",
"Create": "創建",
"Folder Name": "文件夾名稱",
"Ranking": "排行",
"Download Selected": "下載選中",
"Download All": "下載全部",
"Order": "順序",
"minAppVersion @version is required": "需要最低App版本 @version",
"Remove": "移除"
} }
} }

View File

@@ -454,7 +454,9 @@ class _ComicDescription extends StatelessWidget {
), ),
).toAlign(Alignment.topCenter); ).toAlign(Alignment.topCenter);
}), }),
), )
else
const Spacer(),
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [

View File

@@ -12,6 +12,7 @@ import 'package:venera/foundation/history.dart';
import 'package:venera/foundation/res.dart'; import 'package:venera/foundation/res.dart';
import 'package:venera/utils/ext.dart'; import 'package:venera/utils/ext.dart';
import 'package:venera/utils/io.dart'; import 'package:venera/utils/io.dart';
import 'package:venera/utils/translations.dart';
import '../js_engine.dart'; import '../js_engine.dart';
import '../log.dart'; import '../log.dart';

View File

@@ -106,7 +106,9 @@ class ComicSourceParser {
if (minAppVersion != null) { if (minAppVersion != null) {
if (compareSemVer(minAppVersion, App.version.split('-').first)) { if (compareSemVer(minAppVersion, App.version.split('-').first)) {
throw ComicSourceParseException( throw ComicSourceParseException(
"minAppVersion $minAppVersion is required"); "minAppVersion @version is required"
.tlParams({"version": minAppVersion}),
);
} }
} }
for (var source in ComicSource.all()) { for (var source in ComicSource.all()) {

View File

@@ -1574,7 +1574,7 @@ class _SelectDownloadChapterState extends State<_SelectDownloadChapter> {
const SizedBox(width: 16), const SizedBox(width: 16),
Expanded( Expanded(
child: FilledButton( child: FilledButton(
onPressed: () { onPressed: selected.isEmpty ? null : () {
widget.finishSelect(selected); widget.finishSelect(selected);
context.pop(); context.pop();
}, },
@@ -1585,7 +1585,7 @@ class _SelectDownloadChapterState extends State<_SelectDownloadChapter> {
], ],
), ),
), ),
SizedBox(height: MediaQuery.of(context).padding.bottom + 4), SizedBox(height: MediaQuery.of(context).padding.bottom),
], ],
), ),
); );

View File

@@ -451,10 +451,11 @@ class _ComicSourceListState extends State<_ComicSourceList> {
itemBuilder: (context, index) { itemBuilder: (context, index) {
var key = json![index]["key"]; var key = json![index]["key"];
var action = currentKey.contains(key) var action = currentKey.contains(key)
? const Icon(Icons.check) ? const Icon(Icons.check, size: 22).paddingRight(8)
: Tooltip( : Tooltip(
message: "Add", message: "Add",
child: IconButton( child: IconButton(
color: context.colorScheme.primary,
icon: const Icon(Icons.add), icon: const Icon(Icons.add),
onPressed: () async { onPressed: () async {
await widget.onAdd( await widget.onAdd(