This commit is contained in:
czz
2025-11-17 17:05:06 +08:00
4 changed files with 51 additions and 58 deletions

View File

@@ -329,14 +329,23 @@ class _InstantBodyPageState extends State<InstantBodyPage>
crossAxisAlignment:
CrossAxisAlignment.start,
children: [
Text(
'${device['person']?['name'] ?? '未命名'.tr}',
style: TextStyle(
fontFamily: 'Inter',
fontSize: 26.rpx,
letterSpacing: 0.0,
color: themeController
.currentColor.sc3,
Container(
width:
MediaQuery.sizeOf(context)
.width *
0.2,
child: Text(
'${device['person']?['name'] ?? '未命名'.tr}',
style: TextStyle(
fontFamily: 'Inter',
fontSize: 26.rpx,
letterSpacing: 0.0,
color: themeController
.currentColor.sc3,
),
maxLines: 1,
overflow:
TextOverflow.ellipsis,
),
),
// Text(

View File

@@ -142,14 +142,21 @@ class _MessageReviewPageState extends State<MessageReviewPage> {
crossAxisAlignment:
CrossAxisAlignment.start,
children: [
Text(
'${widget.data['person']?['name'] ?? '未命名'.tr}',
style: TextStyle(
fontFamily: 'Inter',
fontSize: 26.rpx,
letterSpacing: 0.0,
color: themeController
.currentColor.sc3,
Container(
width: MediaQuery.sizeOf(context)
.width *
0.2,
child: Text(
'${widget.data['person']?['name'] ?? '未命名'.tr}',
style: TextStyle(
fontFamily: 'Inter',
fontSize: 26.rpx,
letterSpacing: 0.0,
color: themeController
.currentColor.sc3,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
// Text(
@@ -233,7 +240,7 @@ class _MessageReviewPageState extends State<MessageReviewPage> {
// color: themeController
// .currentColor.sc3,
// ),
// ),
// ),
].divide(SizedBox(height: 34.rpx)),
),
),

View File

@@ -674,7 +674,7 @@ class _MinePageState extends State<MinePage> {
mainAxisSize: MainAxisSize.max,
children: [
Text(
'V1.0.2511.14',
'V1.0.2511.17',
style: TextStyle(
fontFamily: 'Inter',
color: Color(0xFFD9E3EB),