From 38c9b1689e49249f918f6793b77fa5bb438f05bc Mon Sep 17 00:00:00 2001 From: sion <450702724@qq.com> Date: Tue, 24 Mar 2026 02:32:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=E4=BF=AE=E6=94=B9=E8=A1=8C=E6=83=85?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=8B=B1=E6=96=87=E4=B8=BA=E4=B8=AD=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 'Search markets...' → '搜索市场...' - 'All' → '全部' - 'Real-time' → '实时' - 'Hot' → '热门' 确保行情页面的所有文字都是中文 --- flutter_monisuo/lib/ui/pages/market/market_page.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flutter_monisuo/lib/ui/pages/market/market_page.dart b/flutter_monisuo/lib/ui/pages/market/market_page.dart index 24e9abe..79e4900 100644 --- a/flutter_monisuo/lib/ui/pages/market/market_page.dart +++ b/flutter_monisuo/lib/ui/pages/market/market_page.dart @@ -74,7 +74,7 @@ class _MarketPageState extends State with AutomaticKeepAliveClientMi onChanged: provider.search, style: TextStyle(color: AppColorScheme.darkOnSurface), decoration: InputDecoration( - hintText: 'Search markets...', + hintText: '搜索市场...', hintStyle: TextStyle(color: AppColorScheme.darkOnSurfaceVariant), prefixIcon: Icon( LucideIcons.search, @@ -107,9 +107,9 @@ class _MarketPageState extends State with AutomaticKeepAliveClientMi Widget _buildTabs(MarketProvider provider) { final tabs = [ - {'key': 'all', 'label': 'All'}, - {'key': 'realtime', 'label': 'Real-time'}, - {'key': 'hot', 'label': 'Hot'}, + {'key': 'all', 'label': '全部'}, + {'key': 'realtime', 'label': '实时'}, + {'key': 'hot', 'label': '热门'}, ]; return Container(