한번 좆되서 다시 돌림

This commit is contained in:
girinb
2025-07-10 18:31:19 +09:00
parent 437330088a
commit ae99bd661d
7 changed files with 291 additions and 274 deletions

View File

@@ -80,8 +80,10 @@ class _PlanPageState extends State<PlanPage> {
return Center(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Text('Error loading PlanPage data: ${snapshot.error}', textAlign: TextAlign.center),
));
child: Text('Error loading PlanPage data: ${snapshot.error}', textAlign: TextAlign.center,
maxLines: 3,
overflow: TextOverflow.ellipsis,
)));
} else if (!snapshot.hasData || snapshot.data!.isEmpty) {
return const Center(child: Text('No data available for PlanPage.'));
} else {
@@ -91,9 +93,8 @@ class _PlanPageState extends State<PlanPage> {
itemCount: plans.length,
itemBuilder: (context, index) {
final plan = plans[index];
return InkWell( // <<< Card를 InkWell로 감싸서 탭 이벤트를 추가합니다.
return InkWell(
onTap: () {
// plan_page_detail로 이동하면서 planId를 arguments로 전달
if (plan.planId == 'ID 없음' || plan.planId.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('유효한 Plan ID가 없어 상세 페이지로 이동할 수 없습니다.')),
@@ -103,20 +104,18 @@ class _PlanPageState extends State<PlanPage> {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const plan_page_detail(), // plan_page_detail 위젯을 생성
builder: (context) => const PlanPageDetail(),
settings: RouteSettings(
arguments: plan.planId, // 선택된 plan의 ID를 전달
// <<< Map 형태로 planId와 planTitle을 전달 >>>
arguments: {
'planId': plan.planId,
'planTitle': plan.planTitle,
},
),
),
);
// 만약 Named Route를 사용하고 main.dart에 '/plan_detail' 라우트가 정의되어 있다면:
// Navigator.pushNamed(
// context,
// '/plan_detail', // MaterialApp에 정의된 라우트 이름
// arguments: plan.planId,
// );
},
child: Card( // <<< 기존 Card 위젯
child: Card(
margin:
const EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
elevation: 2.0,
@@ -134,6 +133,7 @@ class _PlanPageState extends State<PlanPage> {
style: const TextStyle(
fontSize: 17.0, fontWeight: FontWeight.bold),
overflow: TextOverflow.ellipsis,
maxLines: 2,
),
),
const SizedBox(width: 8.0),
@@ -141,6 +141,8 @@ class _PlanPageState extends State<PlanPage> {
plan.planTeacher,
style: const TextStyle(
fontSize: 13.0, color: Colors.grey),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
],
),
@@ -150,7 +152,7 @@ class _PlanPageState extends State<PlanPage> {
borderRadius: BorderRadius.circular(8.0),
child: Image.network(
plan.thumbnail,
height: 140, // 약간 작은 이미지 크기
height: 140,
width: double.infinity,
fit: BoxFit.cover,
loadingBuilder: (BuildContext context, Widget child,
@@ -184,9 +186,6 @@ class _PlanPageState extends State<PlanPage> {
child: const Center(
child: Text('No Image',
style: TextStyle(color: Colors.grey)))),
// const SizedBox(height: 8.0),
// // PlanPage용 ListView 아이템에 추가적인 정보를 표시하거나 다른 UI를 구성할 수 있습니다.
// Text('Plan ID: ${plan.planId}', style: TextStyle(fontSize: 12.0, color: Colors.blueGrey)),
],
),
),