17. 일정 관리 앱 만들기17.1 패키지 의존성먼저 pubspec.yaml에서 의존성을 추가합니다.dependencies: flutter: sdk: flutter table_calendar: ^3.0.9 intl: ^0.18.1intl은 날짜 형식을 출력할 때 필요하고, table_calendar는 달력 위젯입니다.17.2 TableCalendar 기본 위젯 구조이제 달력을 앱에 띄워봅시다. 간단한 StatefulWidget으로 작성합니다.class CalendarScreen extends StatefulWidget { const CalendarScreen({super.key}); @override State createState() => _CalendarScreenState();}cl..