gpt4 book ai didi

flutter - 找不到 MediaQuery 祖先?

转载 作者:行者123 更新时间:2023-12-03 04:14:05 26 4
gpt4 key购买 nike

我正在尝试构建一个页面大小三分之一的容器,但我收到错误 No MediaQuery ancestor could be found starting from the context that was passed to MediaQuery.of().,我完全不知道为什么。它在 MaterialApp 中。

我的代码:

import 'package:flutter/material.dart';


void main() => runApp(LoginPage());

class LoginPage extends StatelessWidget{

@override
Widget build(BuildContext context){
return MaterialApp(
home: Scaffold(
body: Container(
constraints: BoxConstraints.expand(),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Container(
color: Colors.red,
width: double.infinity,
height: MediaQuery.of(context).size.height/3,
)
],
)
)
)
);
}
}

最佳答案

你只需要将 MaterialApp 作为祖先......正如错误所说......

像这样做..

void main() => runApp(MaterialApp(home:LoginPage()));

关于flutter - 找不到 MediaQuery 祖先?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61969143/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com