Skip to content

Commit 391400e

Browse files
author
fbchen
committed
release v0.9.8-stable
1 parent 5fbe2a9 commit 391400e

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v0.9.8-stable
2+
3+
enhance constraints cache.
4+
15
# v0.9.7-stable
26

37
fix guideline offset.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ dependencies:
7878
flutter_constraintlayout:
7979
git:
8080
url: 'https://github.com/hackware1993/Flutter-ConstraintLayout.git'
81-
ref: 'v0.9.7-stable'
81+
ref: 'v0.9.8-stable'
8282
```
8383
8484
```yaml
8585
dependencies:
86-
flutter_constraintlayout: ^0.9.7-stable
86+
flutter_constraintlayout: ^0.9.8-stable
8787
```
8888
8989
```dart

example/home.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ class ExampleHome extends StatelessWidget {
7070

7171
Widget button(String title, GestureTapCallback callback) {
7272
return SizedBox(
73-
height: 100,
73+
height: 40,
7474
width: double.infinity,
7575
child: TextButton(
7676
onPressed: callback,
7777
child: Text(
7878
title,
7979
style: const TextStyle(
80-
fontSize: 30,
80+
fontSize: 20,
8181
),
8282
),
8383
),

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_constraintlayout
22
description: Build flexible layouts with constraints, Similar to Android ConstraintLayout.
3-
version: 0.9.7-stable
3+
version: 0.9.8-stable
44
anthor: hackware
55
homepage: https://github.com/hackware1993/Flutter-ConstraintLayout
66

0 commit comments

Comments
 (0)