- 설정 화면에 SMS 권한 카드 추가: 상태 표시(허용/미허용/영구 거부), 권한 요청/설정 이동 지원\n- 기존 알림 권한 카드 스타일과 일관성 유지 feat(permissions): 최초 실행 시 SMS 권한 온보딩 화면 추가 및 Splash에서 라우팅 (Android) - 권한 필요 이유/수집 범위 현지화 문구 추가\n- 거부/영구거부 케이스 처리 및 설정 이동 chore(codex): AGENTS.md/체크 스크립트/CI/프롬프트 템플릿 추가 - AGENTS.md, scripts/check.sh, scripts/fix.sh, .github/workflows/flutter_ci.yml, .claude/agents/codex.md, 문서 템플릿 추가 refactor(logging): 경로별 print 제거 후 경량 로거(Log) 도입 - SMS 스캐너/컨트롤러, URL 매처, 데이터 리포지토리, 내비게이션, 메모리/성능 유틸 등 핵심 경로 치환 feat(exchange): 환율 API URL을 --dart-define로 오버라이드 가능 + 폴백 로깅 강화 test: URL 매처/환율 스모크 테스트 추가 chore(android): RECEIVE_SMS 권한 제거 (READ_SMS만 유지) fix(lints): dart fix + 수동 정리로 경고 대폭 감소, 비동기 context(mounted) 보강 fix(deprecations):\n- flutter_local_notifications의 androidAllowWhileIdle → androidScheduleMode 전환\n- WillPopScope → PopScope 교체 i18n: SMS 권한 온보딩/설정 문구 현지화 키 추가
198 lines
7.4 KiB
Dart
198 lines
7.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import '../../controllers/detail_screen_controller.dart';
|
|
import '../../theme/app_colors.dart';
|
|
import '../common/form_fields/base_text_field.dart';
|
|
import '../common/buttons/secondary_button.dart';
|
|
import '../../l10n/app_localizations.dart';
|
|
|
|
/// 웹사이트 URL 섹션
|
|
/// 서비스 웹사이트 URL과 해지 관련 정보를 관리하는 섹션입니다.
|
|
class DetailUrlSection extends StatelessWidget {
|
|
final DetailScreenController controller;
|
|
final Animation<double> fadeAnimation;
|
|
final Animation<Offset> slideAnimation;
|
|
|
|
const DetailUrlSection({
|
|
super.key,
|
|
required this.controller,
|
|
required this.fadeAnimation,
|
|
required this.slideAnimation,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final baseColor = controller.getCardColor();
|
|
|
|
return FadeTransition(
|
|
opacity: fadeAnimation,
|
|
child: SlideTransition(
|
|
position: Tween<Offset>(
|
|
begin: const Offset(0.0, 0.8),
|
|
end: Offset.zero,
|
|
).animate(CurvedAnimation(
|
|
parent: controller.animationController!,
|
|
curve: const Interval(0.4, 1.0, curve: Curves.easeOutCubic),
|
|
)),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
color: AppColors.glassCard,
|
|
borderRadius: BorderRadius.circular(20),
|
|
border: Border.all(
|
|
color: AppColors.glassBorder.withValues(alpha: 0.1),
|
|
width: 1,
|
|
),
|
|
boxShadow: const [
|
|
BoxShadow(
|
|
color: AppColors.shadowBlack,
|
|
blurRadius: 10,
|
|
offset: Offset(0, 4),
|
|
),
|
|
],
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// 헤더
|
|
Row(
|
|
children: [
|
|
Container(
|
|
padding: const EdgeInsets.all(8),
|
|
decoration: BoxDecoration(
|
|
color: baseColor.withValues(alpha: 0.1),
|
|
borderRadius: BorderRadius.circular(12),
|
|
),
|
|
child: Icon(
|
|
Icons.language_rounded,
|
|
color: baseColor,
|
|
size: 24,
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
Text(
|
|
AppLocalizations.of(context).websiteInfo,
|
|
style: const TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w700,
|
|
color: AppColors.darkNavy,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 20),
|
|
|
|
// URL 입력 필드
|
|
BaseTextField(
|
|
controller: controller.websiteUrlController,
|
|
focusNode: controller.websiteUrlFocus,
|
|
label: AppLocalizations.of(context).websiteUrl,
|
|
hintText: AppLocalizations.of(context).urlExample,
|
|
keyboardType: TextInputType.url,
|
|
prefixIcon: const Icon(
|
|
Icons.link_rounded,
|
|
color: AppColors.navyGray,
|
|
),
|
|
),
|
|
|
|
// 해지 안내 섹션
|
|
if (controller.subscription.websiteUrl != null &&
|
|
controller.subscription.websiteUrl!.isNotEmpty) ...[
|
|
const SizedBox(height: 24),
|
|
Container(
|
|
padding: const EdgeInsets.all(16),
|
|
decoration: BoxDecoration(
|
|
color: AppColors.warningColor.withValues(alpha: 0.08),
|
|
borderRadius: BorderRadius.circular(16),
|
|
border: Border.all(
|
|
color: AppColors.warningColor.withValues(alpha: 0.4),
|
|
width: 1,
|
|
),
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
const Icon(
|
|
Icons.info_outline_rounded,
|
|
color: AppColors.warningColor,
|
|
size: 20,
|
|
),
|
|
const SizedBox(width: 8),
|
|
Text(
|
|
AppLocalizations.of(context).cancelGuide,
|
|
style: const TextStyle(
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.w600,
|
|
color: AppColors.darkNavy,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 8),
|
|
Text(
|
|
AppLocalizations.of(context).cancelServiceGuide,
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
color: AppColors.darkNavy,
|
|
fontWeight: FontWeight.w500,
|
|
height: 1.5,
|
|
),
|
|
),
|
|
const SizedBox(height: 12),
|
|
TextLinkButton(
|
|
text: AppLocalizations.of(context).goToCancelPage,
|
|
icon: Icons.open_in_new_rounded,
|
|
onPressed: controller.openCancellationPage,
|
|
color: AppColors.warningColor,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
|
|
// URL 자동 매칭 정보
|
|
if (controller.websiteUrlController.text.isEmpty) ...[
|
|
const SizedBox(height: 16),
|
|
Container(
|
|
padding: const EdgeInsets.all(12),
|
|
decoration: BoxDecoration(
|
|
color: AppColors.infoColor.withValues(alpha: 0.08),
|
|
borderRadius: BorderRadius.circular(12),
|
|
border: Border.all(
|
|
color: AppColors.infoColor.withValues(alpha: 0.3),
|
|
width: 1,
|
|
),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
const Icon(
|
|
Icons.auto_fix_high_rounded,
|
|
color: AppColors.infoColor,
|
|
size: 20,
|
|
),
|
|
const SizedBox(width: 8),
|
|
Expanded(
|
|
child: Text(
|
|
AppLocalizations.of(context).urlAutoMatchInfo,
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
color: AppColors.darkNavy,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|