flutter_calendar icon indicating copy to clipboard operation
flutter_calendar copied to clipboard

RenderFlex overflowed when padding

Open encubos opened this issue 5 years ago • 0 comments

Hi.

The Calendar displays without any problem on a full-device-width UI.

But if I wrap the CalendarWidget with Padding, I get this overflow error RenderFlex overflowed

Using this code

Padding(
  padding: const EdgeInsets.all(10),
  child: CalendarWidget( ... )
),

Does anyone know how can I fix this right overflow?? Thanks!

encubos avatar Mar 31 '20 19:03 encubos