createPhoneScreenPath static method
Helper to create generic phone screen path.
Implementation
static Path createPhoneScreenPath(Size screenSize) {
final rect = Offset.zero & screenSize;
final result = Path();
result.addRRect(RRect.fromRectAndRadius(rect, const Radius.circular(10)));
return result;
}