Skip to content

Commit 624908d

Browse files
author
fbchen
committed
release v0.8-beta
1 parent 1027a42 commit 624908d

File tree

2 files changed

+6
-17
lines changed

2 files changed

+6
-17
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ No matter how complex the layout is and how deep the constraints are, it has alm
66
performance as Flex and Stack. When facing complex layouts, it provides better performance,
77
flexibility, and a very flat code hierarchy than Flex and Stack. Say no to 'nesting hell'.
88

9+
Warning:
10+
For layout performance considerations, constraints are always one-way, and there is no two child
11+
elements that directly or indirectly restrain each other. Each constraint should describe exactly
12+
where the child elements are located.
13+
914
Anyone who sends you a harassing message, you can send him Flutter code and use nested hell to rule
1015
him.
1116

@@ -60,7 +65,7 @@ dependencies:
6065
flutter_constraintlayout:
6166
git:
6267
url: 'https://github.com/hackware1993/Flutter-ConstraintLayout.git'
63-
ref: 'v0.7-beta'
68+
ref: 'v0.8-beta'
6469
```
6570
6671
# Example

lib/constrait_layout/constraint_layout.dart

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,6 @@ import 'package:flutter/rendering.dart';
1717
/// indirectly restrain each other. Each constraint should describe
1818
/// exactly where the child elements are located.
1919
///
20-
/// features:
21-
/// 1. build flexible layouts with constraints
22-
/// 2. margin and goneMargin
23-
/// 3. clickPadding (quickly expand the click area of child elements without changing their actual size)
24-
/// 4. visibility control
25-
/// 5. constraint integrity hint
26-
/// 6. bias
27-
/// 7. z-index
28-
/// 8. percentage layout
29-
/// 9. guideline
30-
///
31-
/// not implement
32-
/// . barrier
33-
/// . constraints visualization
34-
/// . chain
35-
///
3620
/// author: hackware
3721
/// home page: https:///github.com/hackware1993
3822

0 commit comments

Comments
 (0)