113 lines
4.0 KiB
Dart
113 lines
4.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
import '../state/session_state.dart';
|
|
import '../theme/app_theme.dart';
|
|
|
|
/// Shows what stays on-device vs what may leave the device (roadmap B / privacy).
|
|
class DataFlowScreen extends StatelessWidget {
|
|
const DataFlowScreen({super.key});
|
|
|
|
Widget _section(
|
|
BuildContext context, {
|
|
required IconData icon,
|
|
required Color tint,
|
|
required String title,
|
|
required String body,
|
|
}) {
|
|
final theme = Theme.of(context);
|
|
return Container(
|
|
margin: const EdgeInsets.only(bottom: 16),
|
|
padding: const EdgeInsets.all(16),
|
|
decoration: BoxDecoration(
|
|
color: theme.colorScheme.surfaceContainerHigh,
|
|
borderRadius: BorderRadius.circular(16),
|
|
),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Container(
|
|
width: 36,
|
|
height: 36,
|
|
alignment: Alignment.center,
|
|
decoration: BoxDecoration(color: tint.withValues(alpha: 0.15), shape: BoxShape.circle),
|
|
child: Icon(icon, size: 18, color: tint),
|
|
),
|
|
const SizedBox(width: 12),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(title, style: theme.textTheme.titleSmall),
|
|
const SizedBox(height: 4),
|
|
Text(
|
|
body,
|
|
style: theme.textTheme.bodyMedium?.copyWith(color: theme.colorScheme.onSurfaceVariant),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final session = context.watch<SessionState>();
|
|
final theme = Theme.of(context);
|
|
final samples = session.styleExamples;
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(title: const Text('데이터 흐름')),
|
|
body: ListView(
|
|
padding: const EdgeInsets.all(16),
|
|
children: [
|
|
_section(
|
|
context,
|
|
icon: Icons.lock_outline,
|
|
tint: TwinTokens.forest,
|
|
title: '기기 안에만 둡니다',
|
|
body: '말투 샘플·온보딩 입력은 이 기기의 로컬 저장소에만 보관합니다. '
|
|
'원문 대화 전체를 서버로 올리지 않는 것이 기본 원칙입니다.',
|
|
),
|
|
Card(
|
|
margin: const EdgeInsets.only(bottom: 16),
|
|
child: ListTile(
|
|
leading: Icon(Icons.record_voice_over_outlined, color: theme.colorScheme.primary),
|
|
title: Text('말투 샘플 ${samples.length}개'),
|
|
subtitle: Text(
|
|
[
|
|
samples.isEmpty ? '(아직 없음 — 말투 샘플 화면에서 추가)' : samples.take(3).join(' · '),
|
|
session.localDbEncrypted
|
|
? '저장: drift + SQLCipher(암호화)'
|
|
: '저장: 메모리/웹 스텁(이 환경에 SQLCipher 없음 — Chrome·Linux 폴백)',
|
|
].join('\n'),
|
|
),
|
|
isThreeLine: true,
|
|
),
|
|
),
|
|
_section(
|
|
context,
|
|
icon: Icons.cloud_upload_outlined,
|
|
tint: TwinTokens.twinMark,
|
|
title: '서버로 보낼 수 있는 것',
|
|
body: '초안이 필요할 때: 최근 대화 몇 줄 + 말투 샘플 일부(최소 컨텍스트)\n'
|
|
'채팅 릴레이: 보낸 메시지 본문\n'
|
|
'계정: 표시 이름·초대 코드·세션 토큰\n'
|
|
'푸시(준비 중): 디바이스 토큰만 등록, 실제 전송은 FCM 프로젝트 연결 후',
|
|
),
|
|
_section(
|
|
context,
|
|
icon: Icons.block,
|
|
tint: theme.colorScheme.error,
|
|
title: '보내지 않는 것',
|
|
body: '전체 채팅 백업 업로드, 온디바이스 말투 학습 원문 코퍼스, '
|
|
'관계 메모의 자동 클라우드 분석',
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|