feat: 폼 필드 컴포넌트 분리 및 구독 카드 인터랙션 개선

- billing_cycle_selector, category_selector, currency_selector 컴포넌트 분리
- 구독 카드 클릭 이슈 해결을 위한 리팩토링
- SMS 스캔 화면 UI/UX 개선 및 기능 강화
- 상세 화면 컨트롤러 로직 개선
- 알림 서비스 및 구독 URL 매칭 기능 추가
- CLAUDE.md 프로젝트 가이드라인 대폭 확장
- 전반적인 코드 구조 개선 및 타입 안정성 강화

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
JiWoong Sul
2025-07-14 15:47:46 +09:00
parent 2f60ef585a
commit 111c519883
39 changed files with 2376 additions and 1231 deletions

View File

@@ -265,7 +265,8 @@ class _SplashScreenState extends State<SplashScreen>
),
boxShadow: [
BoxShadow(
color: AppColors.shadowBlack,
color:
AppColors.shadowBlack,
spreadRadius: 0,
blurRadius: 30,
offset: const Offset(0, 10),
@@ -280,9 +281,8 @@ class _SplashScreenState extends State<SplashScreen>
return ShaderMask(
blendMode:
BlendMode.srcIn,
shaderCallback:
(bounds) =>
const LinearGradient(
shaderCallback: (bounds) =>
const LinearGradient(
colors: AppColors
.blueGradient,
begin:
@@ -323,11 +323,12 @@ class _SplashScreenState extends State<SplashScreen>
);
},
child: Text(
'SubManager',
'Digital Rent Manager',
style: TextStyle(
fontSize: 36,
fontWeight: FontWeight.bold,
color: AppColors.pureWhite,
color: AppColors.primaryColor
.withValues(alpha: 0.9),
letterSpacing: 1.2,
),
),
@@ -352,7 +353,8 @@ class _SplashScreenState extends State<SplashScreen>
'구독 서비스 관리를 더 쉽게',
style: TextStyle(
fontSize: 16,
color: AppColors.pureWhite.withValues(alpha: 0.7),
color: AppColors.primaryColor
.withValues(alpha: 0.7),
letterSpacing: 0.5,
),
),
@@ -373,11 +375,12 @@ class _SplashScreenState extends State<SplashScreen>
height: 60,
padding: const EdgeInsets.all(6),
decoration: BoxDecoration(
color: AppColors.pureWhite.withValues(alpha: 0.1),
color: AppColors.pureWhite
.withValues(alpha: 0.1),
borderRadius: BorderRadius.circular(50),
border: Border.all(
color:
AppColors.pureWhite.withValues(alpha: 0.2),
color: AppColors.pureWhite
.withValues(alpha: 0.2),
width: 1,
),
),
@@ -401,7 +404,7 @@ class _SplashScreenState extends State<SplashScreen>
child: FadeTransition(
opacity: _fadeAnimation,
child: Text(
'© 2023 CClabs. All rights reserved.',
'© 2025 NatureBridgeAI. All rights reserved.',
style: TextStyle(
fontSize: 12,
color: AppColors.pureWhite.withValues(alpha: 0.6),