首先,this,虽然在问题上相似,但不是我所需要的,因为答案对我的情况没有帮助。
我让我的AppConfig根据设备决定字体大小,这样很大的设备,比如平板电脑,会得到更大的文本(稍微大一点)。我的config会在任何视图之前被调用,所以在它运行时我没有BuildContext。那么我该怎么做呢?
class AppConfig {
static AppConfig _instance;
static AppConfig instance() {
if (_instance == null) {
_instance = AppConfig();
}
return _instance;
}
// config stuff for colours and themes
double width = MediaQuery.of(context).size.width;
if (width > 500) { //arbitrary number I haven't decided yet
initWithBigFonts();
} else {
initWithSmallFonts();
}
3条答案
按热度按时间9avjhtql1#
为了将来参考完整的解决方案:
通过添加
您可以在任何地方,无需BuildContext,从设备屏幕获取Size。
h9a6wy2h2#
在这种情况下,您应该考虑devicePixelRatio;
nhhxz33t3#
大小size =媒体查询数据.来自窗口(小部件绑定.示例.窗口).大小;