Articles in this section
Category / Section

How to change the number of weeks in the Flutter Calendar

1 min read

In the Flutter Event Calendar, you can show the required number of weeks by using the numberOfWeeksInView property of the MonthViewSettings. By default, it shows from current week, using initialDisplayDate property you can show from required week.

import 'package:flutter/material.dart';
import 'package:flutter/scheduler.dart';
import 'package:syncfusion_flutter_calendar/calendar.dart';
 
void main() => runApp(WeekNumber());
 
class WeekNumber extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        home: Scaffold(
          body: SafeArea(
            child: SfCalendar(
              view: CalendarView.month,
              monthViewSettings: MonthViewSettings(
                numberOfWeeksInView: 2,
              ),
            ),
          ),
        ));
  }
}

View sample in GitHub

numberofweeks

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied