File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change
1
+ # v0.9.8-stable
2
+
3
+ enhance constraints cache.
4
+
1
5
# v0.9.7-stable
2
6
3
7
fix guideline offset.
Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ dependencies:
78
78
flutter_constraintlayout :
79
79
git :
80
80
url : ' https://github.com/hackware1993/Flutter-ConstraintLayout.git'
81
- ref : ' v0.9.7 -stable'
81
+ ref : ' v0.9.8 -stable'
82
82
` ` `
83
83
84
84
` ` ` yaml
85
85
dependencies :
86
- flutter_constraintlayout : ^0.9.7 -stable
86
+ flutter_constraintlayout : ^0.9.8 -stable
87
87
` ` `
88
88
89
89
` ` ` dart
Original file line number Diff line number Diff line change @@ -70,14 +70,14 @@ class ExampleHome extends StatelessWidget {
70
70
71
71
Widget button (String title, GestureTapCallback callback) {
72
72
return SizedBox (
73
- height: 100 ,
73
+ height: 40 ,
74
74
width: double .infinity,
75
75
child: TextButton (
76
76
onPressed: callback,
77
77
child: Text (
78
78
title,
79
79
style: const TextStyle (
80
- fontSize: 30 ,
80
+ fontSize: 20 ,
81
81
),
82
82
),
83
83
),
Original file line number Diff line number Diff line change 1
1
name : flutter_constraintlayout
2
2
description : Build flexible layouts with constraints, Similar to Android ConstraintLayout.
3
- version : 0.9.7 -stable
3
+ version : 0.9.8 -stable
4
4
anthor : hackware
5
5
homepage : https://github.com/hackware1993/Flutter-ConstraintLayout
6
6
You can’t perform that action at this time.
0 commit comments