syncfusion/flutter-examples

[syncfusion_flutter_datepicker 23.1.43] How do I make the size of the calendar smaller?

ricoricc opened this issue · 1 comments

The calendar takes all the space on the screen, I want it to make it like a showDialog box, is it possible to shrink the box size?
Phone

Regards

Hi ,

By using the DatePicker inside the Card widget, you can change the size of the picker with required size.
Please find the code snippet for the same.

Code snippet:

              Card(
                margin: EdgeInsets.fromLTRB(50, 150, 50, 150),
                child: SfDateRangePicker(
                  view: DateRangePickerView.month,
                ),
              ),

Screenshot:
image

Please let us know if you need further assistance.

Regards,
Indumathi R