mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Merge pull request #1536 from HansMuller/fix_boxconstraints_tostring
BoxConstraints.toString() should show closed intervals
This commit is contained in:
commit
8d47d72979
@ -250,7 +250,7 @@ class BoxConstraints extends Constraints {
|
||||
return value;
|
||||
}
|
||||
|
||||
String toString() => "BoxConstraints($minWidth<=w<$maxWidth, $minHeight<=h<$maxHeight)";
|
||||
String toString() => "BoxConstraints($minWidth<=w<=$maxWidth, $minHeight<=h<=$maxHeight)";
|
||||
}
|
||||
|
||||
/// A hit test entry used by [RenderBox]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user