-
Notifications
You must be signed in to change notification settings - Fork 496
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The release version does not work #3
Comments
Thank you for your question, I will solve it as soon as possible. |
import 'package:flutter/material.dart'; class ScreenUtil { ScreenUtil(BuildContext context) { static int designWidth = 1920; double get scaleWidth => screenWidth / designWidth; double get scaleHeight => screenHeight / designHeight; setWidth(int width) => width * scaleWidth; setHeight(int height) => height * scaleHeight; |
Please add the latest version , I have modified the code and uploaded it. |
The latest version still not work in release version |
if you use 'flutter run --release', this plugin does no work
The text was updated successfully, but these errors were encountered: