- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码导致错误:ParentDataWidget 的使用不正确。此错误的原因是 Positioned 小部件,但我不确定为什么...
return Scaffold(
body: Container(
color: Colors.red,
child: Positioned(
left: 32.0,
child: Container(
width: 128.0,
height: 128.0,
color: Colors.yellow,
),
),
),
);
最佳答案
Positioned
必须根据 documentation 在 Stack
中就是说
A widget that controls where a child of a Stack is positioned.
A Positioned widget must be a descendant of a Stack, and the path from the Positioned widget to its enclosing Stack must contain only StatelessWidgets or StatefulWidgets (not other kinds of widgets, like RenderObjectWidgets).
return Scaffold(
body: Container(
color: Colors.red,
child: Stack(
children: <Widget>[
Positioned(
left: 32.0,
child: Container(
width: 128.0,
height: 128.0,
color: Colors.yellow,
),
),
],
),
),
);
关于Flutter Positioned widget 导致错误 : Incorrect use of ParentDataWidget,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62266850/
自从我引入了 PageView 小部件后,我得到了这个错误: ════════ Exception caught by widgets library ════════════════════════
Anyne 知道这个错误是什么吗?我认为有些 child 不能放在什么东西里面? 接收到不兼容父数据的 RenderObject 的所有权链是:_GestureSemantics ← RawGestu
我收到错误 ParentDataWidget 的错误使用。 import 'package:flutter/material.dart'; import 'package:font_awesome_f
我是 Flutter 的新手,收到以下错误消息。 错误信息: The following assertion was thrown while applying parent data.: Incor
我是 Flutter 的新手,收到以下错误消息。 错误信息: The following assertion was thrown while applying parent data.: Incor
我收到错误错误使用 ParentDataWidget。 并且列表没有第一次显示该项目。 ParentDataWidget Expanded(flex: 1) 想要将 FlexParentData 类型
我正在尝试为我的容器添加背景颜色,然后可能使用 BoxDecoration() 添加一些边框半径。添加 color: Colors.red 到容器时,它会抛出: Incorrect use of Pa
在我申请的这一部分中,我有 ListView ,当我运行应用程序时出现此错误,我无法解决: Scaffold( body: Directionality( textDirection: TextD
以下代码导致错误:ParentDataWidget 的使用不正确。此错误的原因是 Positioned 小部件,但我不确定为什么... return Scaffold( body: Con
以下代码导致错误:ParentDataWidget 的使用不正确。此错误的原因是 Positioned 小部件,但我不确定为什么... return Scaffold( body: Con
我是一名优秀的程序员,十分优秀!