This commit is contained in:
Nedifinita
2025-11-23 21:18:54 +08:00
parent 8615e53c85
commit fe2769f479
2 changed files with 5 additions and 5 deletions

View File

@@ -73,7 +73,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
Icon(Icons.wifi,
color: Theme.of(context).colorScheme.primary),
const SizedBox(width: 12),
Text('RTL-TCP 接收', style: AppTheme.titleMedium),
Text('RTL-TCP ', style: AppTheme.titleMedium),
],
),
const SizedBox(height: 16),
@@ -83,7 +83,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('启用RTL-TCP接收', style: AppTheme.bodyLarge),
Text('启用 RTL-TCP', style: AppTheme.bodyLarge),
],
),
Switch(
@@ -280,7 +280,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
TextField(
controller: _deviceNameController,
decoration: InputDecoration(
labelText: '设备名称 (用于自动连接)',
labelText: '设备名称',
hintText: '输入设备名称',
labelStyle: const TextStyle(color: Colors.white70),
hintStyle: const TextStyle(color: Colors.white54),
@@ -637,7 +637,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
_buildActionButton(
icon: Icons.file_download,
title: '导入数据',
subtitle: '从JSON文件导入记录和设置',
subtitle: ' JSON 文件导入记录和设置',
onTap: _importData,
),
const SizedBox(height: 12),