fix: 修复推荐码输入框颜色问题

- 改为白色背景(alpha: 0.9),更不透明
- 文字颜色改为 black87,清晰可见
- 边框改为绿色,更突出
- 提示文字改为灰色,易于区分

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-20 22:49:40 -08:00
parent ef9056c5ef
commit ef7169f433
1 changed files with 6 additions and 5 deletions

View File

@ -586,11 +586,11 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> {
Container( Container(
padding: EdgeInsets.symmetric(vertical: 12.h, horizontal: 16.w), padding: EdgeInsets.symmetric(vertical: 12.h, horizontal: 16.w),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white.withValues(alpha: 0.15), color: Colors.white.withValues(alpha: 0.9), //
borderRadius: BorderRadius.circular(12.r), borderRadius: BorderRadius.circular(12.r),
border: Border.all( border: Border.all(
color: Colors.white.withValues(alpha: 0.3), color: const Color(0xFF4CAF50), // 绿
width: 1, width: 1.5,
), ),
), ),
child: Row( child: Row(
@ -602,7 +602,7 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> {
hintText: '请输入推荐码或点击右侧扫码', hintText: '请输入推荐码或点击右侧扫码',
hintStyle: TextStyle( hintStyle: TextStyle(
fontSize: 15.sp, fontSize: 15.sp,
color: Colors.white.withValues(alpha: 0.5), color: Colors.grey[500], //
), ),
border: InputBorder.none, border: InputBorder.none,
isDense: true, isDense: true,
@ -610,7 +610,8 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> {
), ),
style: TextStyle( style: TextStyle(
fontSize: 16.sp, fontSize: 16.sp,
color: Colors.white, color: Colors.black87, //
fontWeight: FontWeight.w500,
), ),
), ),
), ),