wp method

double wp(
  1. double percent
)

Width percentage: wp(50) = 50% of screen width.

Implementation

double wp(double percent) => screenWidth * (percent / 100);