setTheme static method

dynamic setTheme(
  1. BuildContext context
)

Implementation

static setTheme(BuildContext context) {
  _screenWidth = MediaQuery.of(context).size.width;
  _screenWidth = _screenWidth > 96 ? _screenWidth : 0;
  _screenHeight = MediaQuery.of(context).size.height;
  _screenHeight = _screenHeight > 120 ? _screenHeight : 0;
}