标签:mba util usb 安全 设计 ret tps ack contex
每个页面的 build 引入
Widget build(BuildContext context) {
ScreenUtil.init(context, width: 750, height: 1334); // width 设计图的宽, height 设计图的高
}ScreenUtil().setHeight(200) // 这种方式写 高 bottom top 的值
ScreenUtil().setWidth(200) //
这种方式写
宽
left
right
封装好的代码
import ‘package:flutter_screenutil/flutter_screenutil.dart‘;
// 适配设备各种分辨率
class Screen{
init(context, {width = 750, height = 1334}) {
ScreenUtil.init(context, width: width, height: height); //初始化 每个页面的 build 都要引入
}
width(value) {
return ScreenUtil().setWidth(value); //设置 宽度 left right
}
height(value) {
return ScreenUtil().setHeight(value); //设置 高度 top bottom
}
screenWidth() {
return ScreenUtil.screenWidth; //设备宽度
}
screenHeight() {
return ScreenUtil.screenHeight; //设备高度
}
pixelRatio() {
return ScreenUtil.pixelRatio; //设备的像素密度
}
statusBarHeight() {
return ScreenUtil.statusBarHeight; //状态栏高度 刘海屏会更高 单位px
}
bottomBarHeight() {
return ScreenUtil.bottomBarHeight; //底部安全区距离,适用于全面屏下面有按键的
}
scaleWidth() {
return ScreenUtil().scaleWidth; // 实际宽度的dp与设计稿px的比例
}
scaleHeight() {
return ScreenUtil().scaleHeight; // 实际高度的dp与设计稿px的比例
}
textScaleFactor() {
return ScreenUtil.textScaleFactor ; //系统字体缩放比例
}
}
标签:mba util usb 安全 设计 ret tps ack contex
原文地址:https://www.cnblogs.com/zhaofeis/p/12377299.html