2025-01-17 08:47:15 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
2025-01-18 09:28:24 +00:00
|
|
|
import '../survey/survey_page.dart';
|
2025-01-17 08:47:15 +00:00
|
|
|
|
|
|
|
/// 팝업(모달) 자체를 보여주는 함수
|
2025-01-18 09:28:24 +00:00
|
|
|
Future<void> showSurveyDialog(BuildContext context, String nickname) async {
|
2025-01-17 08:47:15 +00:00
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
barrierDismissible: false, // 바깥 영역 터치로 닫기 방지
|
2025-01-18 09:28:24 +00:00
|
|
|
builder: (_) => SurveyDialog(nickname: nickname),
|
2025-01-17 08:47:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 실제 AlertDialog 형태의 위젯
|
|
|
|
class SurveyDialog extends StatefulWidget {
|
2025-01-18 09:28:24 +00:00
|
|
|
final String nickname;
|
|
|
|
const SurveyDialog({Key? key, required this.nickname}) : super(key: key);
|
2025-01-17 08:47:15 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<SurveyDialog> createState() => _SurveyDialogState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _SurveyDialogState extends State<SurveyDialog> {
|
|
|
|
bool _todayNotSee = false; // "오늘 하루 보지 않기" 체크 여부
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AlertDialog(
|
|
|
|
title: const Text('설문 참여 안내'),
|
|
|
|
content: SingleChildScrollView(
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
const Text(
|
|
|
|
'안녕하세요, "올스코어" 앱을 이용해주셔서 감사합니다.\n\n'
|
|
|
|
'더 나은 서비스 제공을 위해 간단한 설문조사를 준비했습니다.\n'
|
|
|
|
'설문조사에 참여해주시면 앱 발전에 큰 도움이 됩니다!\n'
|
|
|
|
'(약 1분 소요)',
|
|
|
|
),
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
// "오늘 하루 보지 않기" 체크박스
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
Checkbox(
|
|
|
|
value: _todayNotSee,
|
|
|
|
onChanged: (val) {
|
|
|
|
setState(() {
|
|
|
|
_todayNotSee = val ?? false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
const Text('오늘 하루 보지 않기'),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
// "닫기" 버튼
|
|
|
|
TextButton(
|
|
|
|
onPressed: () async {
|
|
|
|
// 오늘 하루 보지 않기를 체크했다면, SharedPreferences 저장
|
|
|
|
if (_todayNotSee) {
|
|
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
// 예: survey_popup_today = 'Y'
|
|
|
|
await prefs.setString('survey_popup_today', 'Y');
|
|
|
|
}
|
|
|
|
Navigator.pop(context); // 팝업 닫기
|
|
|
|
},
|
|
|
|
style: TextButton.styleFrom(backgroundColor: Colors.grey),
|
|
|
|
child: const Text('닫기', style: TextStyle(color: Colors.white)),
|
|
|
|
),
|
|
|
|
// "설문 참여" 버튼
|
|
|
|
TextButton(
|
|
|
|
onPressed: () async {
|
|
|
|
// 오늘 하루 보지 않기를 체크했다면, SharedPreferences 저장
|
|
|
|
if (_todayNotSee) {
|
|
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
await prefs.setString('survey_popup_today', 'Y');
|
|
|
|
}
|
|
|
|
Navigator.pop(context); // 팝업 닫고
|
|
|
|
// 임시 설문 페이지로 이동
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
2025-01-18 09:28:24 +00:00
|
|
|
MaterialPageRoute(builder: (_) => SurveyPage(nickname: widget.nickname)),
|
2025-01-17 08:47:15 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
style: TextButton.styleFrom(backgroundColor: Colors.black),
|
|
|
|
child: const Text('설문 참여', style: TextStyle(color: Colors.white)),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|