92 lines
3.7 KiB
Dart
92 lines
3.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import '../data/upcoming_study.dart'; // UpcomingStudy 모델을 import 합니다.
|
|
|
|
class UpcomingClassCard extends StatelessWidget {
|
|
final UpcomingStudy plan;
|
|
final VoidCallback onTap;
|
|
|
|
const UpcomingClassCard({
|
|
super.key,
|
|
required this.plan,
|
|
required this.onTap,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
width: MediaQuery.of(context).size.width / 2, // 화면 너비의 절반으로 설정
|
|
child: InkWell(
|
|
onTap: onTap,
|
|
child: Card(
|
|
margin: const EdgeInsets.only(right: 12.0), // 항목 간의 간격 조정
|
|
elevation: 2.0,
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5.0)),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(5.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
if (plan.thumbnail.isNotEmpty)
|
|
Expanded(
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: Image.network(
|
|
plan.thumbnail,
|
|
width: double.infinity,
|
|
fit: BoxFit.contain,
|
|
loadingBuilder: (BuildContext context, Widget child, ImageChunkEvent? loadingProgress) {
|
|
if (loadingProgress == null) return child;
|
|
return Center(
|
|
child: CircularProgressIndicator(
|
|
value: loadingProgress.expectedTotalBytes != null
|
|
? loadingProgress.cumulativeBytesLoaded / loadingProgress.expectedTotalBytes!
|
|
: null,
|
|
),
|
|
);
|
|
},
|
|
errorBuilder: (BuildContext context, Object exception, StackTrace? stackTrace) {
|
|
return const Center(child: Icon(Icons.broken_image, color: Colors.grey, size: 50));
|
|
},
|
|
),
|
|
),
|
|
)
|
|
else
|
|
Expanded(
|
|
child: Container(
|
|
color: Colors.grey[200],
|
|
child: const Center(child: Text('No Image', style: TextStyle(color: Colors.grey)))
|
|
),
|
|
),
|
|
// const SizedBox(height: 5.0),
|
|
SizedBox(
|
|
height: 70, // 텍스트 영역의 고정 높이 설정 (두 줄 텍스트를 위한 충분한 공간)
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
SizedBox(
|
|
height: 48.0, // plan.planTitle이 항상 두 줄 공간을 차지하도록 고정
|
|
child: Text(
|
|
plan.planTitle,
|
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(fontWeight: FontWeight.bold),
|
|
overflow: TextOverflow.ellipsis,
|
|
maxLines: 2,
|
|
),
|
|
),
|
|
const SizedBox(height: 4.0),
|
|
Text(
|
|
plan.planTeacher,
|
|
style: Theme.of(context).textTheme.bodySmall?.copyWith(color: Colors.grey[600]),
|
|
maxLines: 1,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|