You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TODO: Investigate whether a hard assertion and error is necessary for when padding exceeds grid view width.
Perhaps a safer way is to log a warning and not throw an error. responsive_grid.dart Line 81
// The maximum width available for items.double crossAxisExtent = constraints.maxWidth - paddingHolder.horizontal;
assert(crossAxisExtent >0,
'$paddingHolder exceeds layout width (${constraints.maxWidth})');