Actually installed the Flutter SDK, built the app (web + a local screenshot harness through a real backend), and looked at the rendered screens instead of judging the design from source alone. The previous gradient/glassmorphism pass read as flat and generic: glass cards barely contrasted against the pale background, the brand mark was a stock sparkle icon, and buttons were flat solid fills. Changes: - Stronger, more saturated aurora gradient + blurred glow orbs in GradientBackdrop for real depth instead of a flat 3-stop pastel. - Glass cards/inputs get higher-contrast fill/border and a brand-tinted shadow so they visibly lift off the backdrop. - New BrandMark (gradient monogram), GradientText (gradient-filled wordmark), and PrimaryGradientButton (gradient CTA with shadow) replace the generic Material icon/flat button on splash, signup, onboarding and the conversation list empty state. - Fixed a real pre-existing layout bug found via screenshot: the onboarding header badge was a direct ListView child with an explicit width, which Flutter's sliver list silently stretches to full width regardless of the Container's own width — invisible before because its old flat pale fill blended into the background. Wrapped it in Align to restore its intended size. Verified with flutter analyze (0 errors) and flutter test (all passing), plus manual screenshots of signup, onboarding, conversation list and a live chat exchanged between two demo users through a real core-backend instance. |
||
|---|---|---|
| .. | ||
| android | ||
| lib | ||
| test | ||
| web | ||
| .gitignore | ||
| .metadata | ||
| README.md | ||
| analysis_options.yaml | ||
| pubspec.lock | ||
| pubspec.yaml | ||
README.md
와카뷰 mobile (Flutter)
Phase 1 클라이언트 (docs/roadmap.md §2.3 / A3). v1은 Android 빌드만 대상으로 한다
(docs/tech-design.md §8).
지금 있는 것
- 초대 코드 가입 (
POST /auth/signup) + Bearer 세션 - 말투 샘플 온보딩(기기 로컬 저장; 최종 카피는 PoC 이후)
- 대화방 목록/생성 (
GET/POST /conversations) — 수동 ID 입력 제거 - 연락처 CRUD + 대화 시작 (
/users/:id/contacts) - 채팅 히스토리 로드 + WebSocket 수신
- 와카뷰 초안 / L1 승인(수정·버리기·재초안·승인 발송)
- 와카뷰 뱃지 · 거부권 · 되돌리기
- 사후 알림 함 (
GET /users/:id/escalation-logs) - 자율성 L0~L2 + 화이트리스트 CRUD UI
실행
# core-backend + ai-service 가 떠 있어야 실제 호출이 된다
cd mobile
flutter pub get
# Android 에뮬레이터 → 호스트의 core-backend(기본 8080)
flutter run --dart-define=CORE_API_BASE=http://10.0.2.2:8080
# 실기기/로컬 네트워크
flutter run --dart-define=CORE_API_BASE=http://<your-lan-ip>:8080
E2E
API 레벨 (클라우드/CI에서 실행 가능)
# core-backend :8080 + ai-service :8001 기동 후
export ADMIN_API_TOKEN=dev-admin-token
python3 scripts/e2e_a3.py
A3 체크리스트(가입·연락처·대화·히스토리·draft/L1·에스컬레이션·되돌리기·거부권·화이트리스트)를 HTTP로 검증한다.
에뮬레이터/실기기 UI 탭 (Android SDK 필요)
- 초대 코드로 가입 → 말투 샘플 저장(또는 나중에)
- 연락처에 상대 사용자 ID 등록 → 대화 시작
- 메시지 전송 · 새로고침 후 히스토리 유지
- 초안 요청 → L1 패널에서 수정/버리기/승인 발송 → 와카뷰 뱃지 확인
- 민감 문장으로 에스컬레이션 → 사후 알림 함 진입
- 와카뷰 메시지 되돌리기 · 거부권
- 자율성 L0~L2 + 화이트리스트 추가/삭제
로컬 DB (drift + SQLCipher)
말투 샘플·온보딩 플래그는 lib/db/ 암호화 SQLite에 저장한다. 패스프레이즈는
flutter_secure_storage. Linux 개발 호스트에 libsqlcipher.so가 없으면 메모리 폴백으로
기동한다(Android 릴리즈 경로에서는 SQLCipher 사용).
# Linux에서 drift 테스트/암호화 DB를 쓰려면
sudo apt-get install -y libsqlite3-dev libsqlcipher1
아직 없는 것
- Firebase 프로젝트의 실제 FCM registration token 연동 (
google-services.json) - 오프라인 메시지 큐 / 멀티디바이스 실시간 설정 동기화 고도화
- 온보딩 말투 UX 디테일 (PoC #1 결과는 맨 마지막에 반영)
- iOS 빌드 (v1 범위 밖)