feat: 修改兼容

This commit is contained in:
speakeloudest 2025-11-19 04:06:46 -08:00
parent 325a63d35f
commit 8fd742a688
3 changed files with 39 additions and 44 deletions

BIN
android/app/src/main/res/drawable-hdpi/splash.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -436,7 +436,7 @@ class HINodeListView extends GetView<HINodeListController> {
print('🎯 检测到auto组节点获取最快节点信息');
final autoNodeInfo = controller.homeController.kr_getCountryAutoSelectedNode(item.country);
print('📊 _kr_buildNodeListItem获取auto最快节点: $autoNodeInfo');
displayDelay = autoNodeInfo?['delay'] ?? 0;
displayDelay = autoNodeInfo?['delay'] ?? 3000;
print('✅ _kr_buildNodeListItem使用auto最快节点延迟: $displayDelay');
} else {
//

View File

@ -19,22 +19,12 @@ class HINodePageView extends GetView<HINodeListController> {
return HIBaseScaffold(
child: Stack(
children: [
//
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Positioned(
left: 0, //
left: 0,
child: Obx(() => controller.isDebugMode.value
? GestureDetector(
onTap: () {
controller.kr_resetDebugMode();
Get.snackbar(
'调试模式',
'已关闭调试模式',
snackPosition: SnackPosition.BOTTOM,
duration: const Duration(seconds: 2),
);
},
child: Container(
padding: EdgeInsets.symmetric(horizontal: 10.w, vertical: 4.w),
@ -65,6 +55,11 @@ class HINodePageView extends GetView<HINodeListController> {
)
: const SizedBox.shrink()),
),
//
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
//
Padding(
padding: EdgeInsets.only(left: 100.w, right: 60.w),