screenScaleTransform static method
Implementation
static Matrix4 screenScaleTransform(DeviceInfo device) {
final scale = device.screenPath.getBounds().width / device.screenSize.width;
return Matrix4.identity()..scale(scale);
}
static Matrix4 screenScaleTransform(DeviceInfo device) {
final scale = device.screenPath.getBounds().width / device.screenSize.width;
return Matrix4.identity()..scale(scale);
}