更新沃棣背景适配

This commit is contained in:
wyf
2026-02-10 14:30:16 +08:00
parent 6709bcb446
commit d0ae2a9f76
70 changed files with 877 additions and 744 deletions

View File

@@ -56,7 +56,7 @@ import 'package:EasyDartModule/EasyDartModule.dart' as edm;
// child: Container(
// decoration: BoxDecoration(
// image: DecorationImage(
// // image: AssetImage('assets/img/bgNoImg.png'), // 本地图片
// // image: AssetImage(getBackgroundImageNoImage()), // 本地图片
// image: AssetImage('assets/images/new_background.png'), // 本地图片
// fit: BoxFit.fill, // 填满整个 Container
// ),
@@ -363,8 +363,7 @@ class _XiaoEPageState extends State<XiaoEPage>
List<dynamic> rawList = res.data ?? [];
List<Map<String, dynamic>> newList = rawList.map((item) {
String mac = item['mac'] ?? '';
String name = (
item['name'] != null &&
String name = (item['name'] != null &&
item['name'].toString().trim().isNotEmpty)
? item['name'] + "_$mac"
: '未命名'.tr + "_$mac";