How to customize the agenda view appointment using the style properties in Flutter Calendar?
In the Flutter Event Calendar, you can customize the agenda view appointment appearance by using the agendaStyle property of the MonthViewSettings.
Agenda view can be customized using appointmentTextStyle, dayTextStyle, dateTextStyle and backgroundColor properties.
import 'package:flutter/material.dart'; import 'package:syncfusion_flutter_calendar/calendar.dart'; void main() => runApp(AgendaAppointmentAppearance()); class AgendaAppointmentAppearance extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( body: SafeArea( child: SfCalendar( view: CalendarView.month, dataSource: getCalendarDataSource(), monthViewSettings: MonthViewSettings( showAgenda: true, agendaStyle: AgendaStyle( backgroundColor: Colors.tealAccent, appointmentTextStyle: TextStyle( fontSize: 14, fontStyle: FontStyle.italic, color: Colors.deepPurple), dateTextStyle: TextStyle( fontStyle: FontStyle.normal, fontSize: 12, fontWeight: FontWeight.w300, color: Colors.black), dayTextStyle: TextStyle( fontStyle: FontStyle.normal, fontSize: 20, fontWeight: FontWeight.w700, color: Colors.black), )), ), ), )); } _DataSource getCalendarDataSource() { final List<Appointment> appointments = <Appointment>[]; appointments.add(Appointment( startTime: DateTime.now().add(const Duration(hours: 4, days: -1)), endTime: DateTime.now().add(const Duration(hours: 5, days: -1)), subject: 'Release Meeting', color: Colors.lightBlueAccent, )); appointments.add(Appointment( startTime: DateTime.now().add(const Duration(hours: 2, days: -2)), endTime: DateTime.now().add(const Duration(hours: 4, days: -2)), subject: 'Performance check', color: Colors.amber, )); appointments.add(Appointment( startTime: DateTime.now().add(const Duration(hours: 6, days: -3)), endTime: DateTime.now().add(const Duration(hours: 7, days: -3)), subject: 'Support', color: Colors.green, )); appointments.add(Appointment( startTime: DateTime.now().add(const Duration(hours: 6, days: 2)), endTime: DateTime.now().add(const Duration(hours: 7, days: 2)), subject: 'Retrospective', color: Colors.purple, )); return _DataSource(appointments); } } class _DataSource extends CalendarDataSource { _DataSource(List<Appointment> source) { appointments = source; } }
Conclusion
I hope you enjoyed learning about how to customize the agenda view appointment using the style properties in Flutter Calendar.
You can refer to our Flutter Calendar feature tour page to know about its other groundbreaking feature representations. You can also explore our documentation to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!