screenWidth function

double screenWidth(
  1. BuildContext context
)

Implementation

double screenWidth(BuildContext context) =>
    MediaQuery.of(context).size.width +
        MediaQuery.of(context).padding.left +
        MediaQuery.of(context).padding.right;