Flutter - позиционированный виджет в стеке, вызывающий исключение
Я получаю следующее исключение, когда пытаюсь инкапсулировать карту PandemicCard с позиционированным виджетом. Если я отрисовываю карту одиноким / не позиционированным виджетом, он работает просто отлично.
I/flutter ( 7331): ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
I/flutter ( 7331): The following assertion was thrown during performLayout():
I/flutter ( 7331): RenderStack object was given an infinite size during layout.
I/flutter ( 7331): This probably means that it is a render object that tries to be as big as possible, but it was put
I/flutter ( 7331): inside another render object that allows its children to pick their own size.
I/flutter ( 7331): The nearest ancestor providing an unbounded height constraint is:
I/flutter ( 7331): RenderFlex#2b18c relayoutBoundary=up2 NEEDS-LAYOUT NEEDS-PAINT OVERFLOWING
I/flutter ( 7331): creator: Column ← Center ← MediaQuery ← LayoutId-[<_ScaffoldSlot.body>] ← CustomMultiChildLayout ←
Для этого кода. Кто-нибудь может помочь мне понять, что я делаю неправильно?
class PandemicCard extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
height: 120.0,
width: 76.0,
decoration: BoxDecoration(
color: Colors.blue,
boxShadow: [
BoxShadow(
blurRadius: 5.0,
color: Colors.grey)
]),
child: Text('Hi'),
);
}
}
class PandemicCardStackState extends State<PandemicCardStack> {
// final _cards = <PandemicCard>[ PandemicCard(), PandemicCard()];
final _cards = <PandemicCard>[ PandemicCard()];
@override
Widget build( BuildContext context) {
return Stack(
// This Bombs!
children: <Widget>[ Positioned( left: 0.0, top: 0.0, child: _cards[0])]
// This works!
// children: <Widget>[ _cards[0]]
);
}
}
class PandemicCardStack extends StatefulWidget {
@override
PandemicCardStackState createState() => PandemicCardStackState();
}
Спасибо за ваше время!
3 ответа
Решение
Добавить пустой Container
как child
стека:
@override
Widget build( BuildContext context) {
return Stack(
children: <Widget>[
Container(),
Positioned( left: 0.0, top: 0.0, child: _cards[0]),
]
);
}
Другие обходные пути:
(а) Оберните стопку в контейнер известной высоты:
Container(
height: 50,
child: Stack(
children: [
Positioned(top: 10, left: 10, child: Text('My child'))
]),
),
(b) Как было предложено, добавьте пустой контейнер () и Clip.none:
Stack(
clipBehavior: Clip.none,
children: [
Container(),
Positioned(top: 10, left: 10, child: Text('My child'))
]),
Так как это все еще проблема. Я тоже наткнулся на другой вариант.
Вы также можете обернуть свой стек в виджет IntrinsicHeight.
IntrinsicHeight(
child:
Stack(
children: [Positioned(top: 10, left: 10, child:Text('My child')
)]
),
),