You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 24, 2020. It is now read-only.
When using a long nested tree, a problem with the RenderBox size.
RenderBox was not laid out: RenderCustomPaint#0654b relayoutBoundary=up3 NEEDS-PAINT NEEDS-COMPOSITING-BITS-UPDATE
'package:flutter/src/rendering/box.dart':
RenderFlex children have non-zero flex but incoming height constraints are unbounded.
I was able to solve this issue by replacing the Expanded with Flexible in progress_dialog.dart on line 229. But I could only change it using a static customBody, so if you can change it in your library now it will be so great. So that we can all have control over the default library dynamic body content.
Expanded( //<== This need to be replaced by a Flexible(
child:Row(
children:<Widget>[
Expanded(
child:Text(_dialogMessage,
style: _messageStyle)),
],
),
),
The text was updated successfully, but these errors were encountered:
When using a long nested tree, a problem with the RenderBox size.
RenderBox was not laid out: RenderCustomPaint#0654b relayoutBoundary=up3 NEEDS-PAINT NEEDS-COMPOSITING-BITS-UPDATE
'package:flutter/src/rendering/box.dart':
RenderFlex children have non-zero flex but incoming height constraints are unbounded.
I was able to solve this issue by replacing the
Expanded
withFlexible
in progress_dialog.dart on line 229. But I could only change it using a staticcustomBody,
so if you can change it in your library now it will be so great. So that we can all have control over the default library dynamic body content.Please update it ASAP.
Solution is:
The text was updated successfully, but these errors were encountered: