fromis_9/app/lib/views/schedule/schedule_view.dart

42 lines
989 B
Dart

/// 일정 화면
library;
import 'package:flutter/material.dart';
import '../../core/constants.dart';
class ScheduleView extends StatelessWidget {
const ScheduleView({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.calendar_today_outlined,
size: 64,
color: AppColors.textTertiary,
),
SizedBox(height: 16),
Text(
'일정',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: AppColors.textSecondary,
),
),
SizedBox(height: 8),
Text(
'일정 화면 준비 중',
style: TextStyle(
fontSize: 14,
color: AppColors.textTertiary,
),
),
],
),
);
}
}