Compare commits

..

2 Commits

Author SHA1 Message Date
girinb
a926d9c7bc 플랜 프토토타입 완료 2025-07-16 00:23:54 +09:00
girinb
5f79863698 플랜 태그 변경 2025-07-15 22:23:43 +09:00
5 changed files with 126 additions and 59 deletions

View File

@@ -16,7 +16,7 @@ class CaseStudyPlan {
return CaseStudyPlan(
planId: json['casestudy lesson id'] ?? '아이디 없음',
planTitle: json['course_name'] ?? '제목 없음',
planTeacher: json['planTeacher'] ?? '',
planTeacher: json['course_description'] ?? '',
thumbnail: json['course_thumbnail'] ?? '',
);
}

View File

@@ -112,11 +112,7 @@ class _MyHomePageState extends State<MyHomePage> {
onTap: _navigateToProfileTab,
customBorder: const CircleBorder(),
child: const CircleAvatar(
backgroundColor: Colors.grey,
child: Icon(
Icons.person,
color: Colors.white,
),
backgroundImage: NetworkImage('https://manostmboy.github.io/temp/dumass.png'),
),
),
),

View File

@@ -3,15 +3,40 @@ import 'package:flutter/material.dart';
class MorePage extends StatelessWidget {
const MorePage({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text(
'More Page',
style: TextStyle(fontSize: 24),
),
return Scaffold(
// appBar: AppBar(
// title: const Text('My Page'),
// ),
body: Column(
children: [
const ListTile(
leading: CircleAvatar(
backgroundImage: NetworkImage('https://manostmboy.github.io/temp/dumass.png'),
),
title: Text('김보통'),
subtitle: Text('normalkim@manos.kr'),
),
const Divider(),
// 메뉴 항목
_buildMenuItem(Icons.subscriptions, 'My Subscriptions'),
_buildMenuItem(Icons.bookmark, 'Saved Lessons'),
_buildMenuItem(Icons.card_membership, 'Certificates'),
_buildMenuItem(Icons.notifications, 'Notifications'),
],
),
);
}
Widget _buildMenuItem(IconData icon, String title) {
return ListTile(
leading: Icon(icon),
title: Text(title),
trailing: const Icon(Icons.arrow_forward_ios),
onTap: () {
// 탭 시 동작을 여기에 정의할 수 있어요.
},
);
}
}

View File

@@ -24,7 +24,7 @@ class _PlanPageState extends State<PlanPage> {
Future<List<CaseStudyPlan>> _fetchPlanData() async {
// HomePage와 동일한 API 주소를 사용합니다.
final response = await http
.get(Uri.parse('https://helloworld2-ad2uqhckxq-uc.a.run.app'));
.get(Uri.parse('https://helloworld6-ad2uqhckxq-uc.a.run.app'));
if (response.statusCode == 200) {
final Map<String, dynamic> decodedJson = json.decode(response.body);
@@ -69,27 +69,8 @@ class _PlanPageState extends State<PlanPage> {
itemBuilder: (context, index) {
final plan = plans[index];
return InkWell(
onTap: () {
if (plan.planId == 'ID 없음' || plan.planId.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('유효한 Plan ID가 없어 상세 페이지로 이동할 수 없습니다.')),
);
return;
}
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const PlanPageDetail(),
settings: RouteSettings(
// <<< Map 형태로 planId와 planTitle을 전달 >>>
arguments: {
'planId': plan.planId,
'planTitle': plan.planTitle,
},
),
),
);
},
// onTap: () {
// },
child: Card(
margin:
const EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
@@ -99,28 +80,7 @@ class _PlanPageState extends State<PlanPage> {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Expanded(
child: Text(
plan.planTitle,
style: const TextStyle(
fontSize: 17.0, fontWeight: FontWeight.bold),
overflow: TextOverflow.ellipsis,
maxLines: 2,
),
),
const SizedBox(width: 8.0),
Text(
plan.planTeacher,
style: const TextStyle(
fontSize: 13.0, color: Colors.grey),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
],
),
const SizedBox(height: 8.0),
if (plan.thumbnail.isNotEmpty)
@@ -128,7 +88,7 @@ class _PlanPageState extends State<PlanPage> {
borderRadius: BorderRadius.circular(8.0),
child: Image.network(
plan.thumbnail,
height: 120,
height: 200,
width: double.infinity,
fit: BoxFit.contain,
alignment: Alignment.centerLeft,
@@ -163,6 +123,92 @@ class _PlanPageState extends State<PlanPage> {
child: const Center(
child: Text('No Image',
style: TextStyle(color: Colors.grey)))),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
plan.planTitle,
style: const TextStyle(
fontSize: 20.0, fontWeight: FontWeight.bold),
overflow: TextOverflow.ellipsis,
maxLines: 2,
),
const SizedBox(height: 5.0),
// Text(
// plan.planTeacher,
// style: const TextStyle(
// fontSize: 15.0, color: Colors.black45),
// maxLines: 1,
// overflow: TextOverflow.ellipsis,
// ),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Expanded(
child: Text(
"Progress",
style: const TextStyle(
fontSize: 15.0, color: Colors.black45),
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
),
const SizedBox(width: 5.0),
Text(
"50%",
style: const TextStyle(
fontSize: 15.0, color: Colors.black45),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
],
),
const SizedBox(height: 8.0),
LinearProgressIndicator(
value: 0.5, // TODO: Replace with actual progress value from plan object
backgroundColor: Colors.grey[200],
valueColor: AlwaysStoppedAnimation<Color>(Colors.blue),
),
const SizedBox(height: 16.0),
Column(
mainAxisAlignment: MainAxisAlignment.center, // 세로 중앙 정렬
crossAxisAlignment: CrossAxisAlignment.stretch, // 버튼이 가로로 꽉 차게 설정
children: [ElevatedButton(
onPressed: () {
// TODO: Implement navigation or action for Continue Learning
if (plan.planId == 'ID 없음' || plan.planId.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('유효한 Plan ID가 없어 상세 페이지로 이동할 수 없습니다.')),
);
return;
}
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const PlanPageDetail(),
settings: RouteSettings(
// <<< Map 형태로 planId와 planTitle을 전달 >>>
arguments: {
'planId': plan.planId,
'planTitle': plan.planTitle,
},
),
),
);
},
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xB91459DB),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
padding: const EdgeInsets.symmetric(horizontal: 20),
),
child: const Text('Continue Learning',style: TextStyle(color: Colors.white)),
),],),
],
),
],
),
),

View File

@@ -254,7 +254,7 @@ class _PlanPageDetailState extends State<PlanPageDetail> {
),
const SizedBox(height: 6),
Text(
item.lessonTag,
item.lessonName,
style: const TextStyle(
fontSize: 13,
fontWeight: FontWeight.w500),