fix(guide): change referral code input text color to black for visibility
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
9e6fc04344
commit
176a4b1493
|
|
@ -620,7 +620,7 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> {
|
||||||
hintText: '请输入推荐码 / 序列号',
|
hintText: '请输入推荐码 / 序列号',
|
||||||
hintStyle: TextStyle(
|
hintStyle: TextStyle(
|
||||||
fontSize: 16.sp,
|
fontSize: 16.sp,
|
||||||
color: Colors.white.withValues(alpha: 0.6),
|
color: Colors.black.withValues(alpha: 0.4),
|
||||||
),
|
),
|
||||||
border: InputBorder.none,
|
border: InputBorder.none,
|
||||||
isDense: true,
|
isDense: true,
|
||||||
|
|
@ -628,9 +628,9 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> {
|
||||||
),
|
),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16.sp,
|
fontSize: 16.sp,
|
||||||
color: Colors.white,
|
color: Colors.black,
|
||||||
),
|
),
|
||||||
cursorColor: Colors.white,
|
cursorColor: Colors.black,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
// 扫码按钮
|
// 扫码按钮
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue