We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
main
3.16.3
<!DOCTYPE html> <html> <head> <style> .flex-wrap{ width: 400px; background: pink; display: flex; padding: 10px; } .flex1 { width: 40px; height: 40px; background: yellow } .flex2 { flex: 1; background: forestgreen; } .flex3 { max-width: 80px; } </style> </head> <body> <div class="container"> <div class="flex-wrap"> <div class="flex2"> <!-- lass="checkbox" type="checkbox" disabled name="" lass="checkbox" type="checkbox" disabled name="" --> <p class="p1">class="checkbox" type="checkbox" disabled name="" type="checkbox" disabled name=""</p> <p class="p1">class="checkbox" type="checkbox" d isabled name="" type="checkbox" disabled name=""</p> </div> <div class="flex3">43242423</div> <p class="flex1" >aaa</p> </div> </div> </body> </html>
The text was updated successfully, but these errors were encountered:
Maybe temporary solution that I found, in _recordRunsMainSize (or directly in webf/lib/src/rendering/flow.dart: 886)
webf/lib/src/rendering/flow.dart: 886
if (runChild is RenderBoxModel) { - runChildMainSize = runChild.boxSize?.width ?? 0.0; + runChildMainSize = runChild.minContentWidth; double childMarginLeft = runChild.renderStyle.marginLeft.computedValue; double childMarginRight = runChild.renderStyle.marginRight.computedValue; runChildMainSize += childMarginLeft + childMarginRight; }
after fix:
Sorry, something went wrong.
temper357
No branches or pull requests
Affected version
main
Flutter versions
3.16.3
No same issues found.
Steps to Reproduce
Code example
Expected results
Actual results
The text was updated successfully, but these errors were encountered: