shouldSplitLayout static method

bool shouldSplitLayout(
  1. BuildContext context
)

Implementation

static bool shouldSplitLayout(BuildContext context) {
  final textScaleFactor = MediaQuery.textScalerOf(context).scale(1.0);
  return textScaleFactor > _textScaleThreshold;
}