widthOf static method

double widthOf(
  1. BuildContext context
)

Implementation

static double widthOf(BuildContext context) {
  final scoped = _KiteResponsiveWidthScope.maybeWidthOf(context);
  if (scoped != null) return scoped;
  return MediaQuery.sizeOf(context).width;
}