build method
Describes the part of the UI represented by this widget.
Implementation
@override
Widget build(BuildContext context) {
final mediaQuery = MediaQuery.maybeOf(context);
final constraints = mediaQuery != null
? BoxConstraints(
maxWidth: mediaQuery.width,
maxHeight: mediaQuery.height,
)
: BoxConstraints();
return builder(context, constraints);
}