@@ -6,10 +6,11 @@ No matter how complex the layout is and how deep the constraints are, it has alm
66performance as Flex and Stack. When facing complex layouts, it provides better performance,
77flexibility, and a very flat code hierarchy than Flex and Stack. Say no to 'nesting hell'.
88
9- ** It is recommended to use ConstraintLayout at the top level. For extremely complex layout(One
10- thousand child elements, two thousand constraints), layout and drawing total time within 5
11- milliseconds(debug mode on Windows 10,release mode take less time), the frame rate can be easily
12- reached 200 fps.**
9+ ** Flutter ConstraintLayout has extremely high layout performance because it does not require linear
10+ equations to solve. It is recommended to use ConstraintLayout at the top level. For extremely
11+ complex layout(One thousand child elements, two thousand constraints), layout and drawing total time
12+ within 5 milliseconds(debug mode on Windows 10,release mode take less time), the frame rate can be
13+ easily reached 200 fps.**
1314
1415** If not necessary, try to be relative to the parent layout, so that you can define less id.**
1516
@@ -53,13 +54,13 @@ insult him.
535410 . guideline
545511 . constraints and widgets separation
555612 . barrier
57+ 13 . dimension ratio
5658
5759Coming soon:
5860
59- 1 . constraints visualization
60- 2 . chain
61- 3 . dimension ratio
62- 4 . more...
61+ 1 . chain
62+ 2 . constraints visualization
63+ 3 . more...
6364
6465Support platform:
6566
@@ -79,12 +80,12 @@ dependencies:
7980 flutter_constraintlayout :
8081 git :
8182 url : ' https://github.com/hackware1993/Flutter-ConstraintLayout.git'
82- ref : ' v0.8.9 -stable'
83+ ref : ' v0.9.0 -stable'
8384` ` `
8485
8586` ` ` yaml
8687dependencies :
87- flutter_constraintlayout : ^0.8.9 -stable
88+ flutter_constraintlayout : ^0.9.0 -stable
8889` ` `
8990
9091` ` ` dart
0 commit comments