build method
- dynamic context
Implementation
@override
Widget build(BuildContext context) {
double currentWidth = MediaQuery.of(context).size.width;
int maxGridWidgetsPerRow = 7;
if (currentWidth < narrowScreenWidthThreshold) {
maxGridWidgetsPerRow = 4;
}
return AdaptiveGrid(
rowAlignment: MainAxisAlignment.center,
gridWidgets: buildSocialMediaChildren(),
maxgridWidgetsPerRow: maxGridWidgetsPerRow,
);
}