Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit 939813d

Browse files
authored
bump release numbers for core and compose (#252)
move to 1.0-alpha8 (compose) and 1.0-beta3 (core)
1 parent 81dd7c6 commit 939813d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

constraintlayout/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ android.enableD8.desugaring=true
66
android.useAndroidX=true
77

88
constraintlayout.version=2.1.0-beta02
9-
core.version=1.0.0-beta02
10-
compose.version=1.0.0-alpha07
9+
core.version=1.0.0-beta03
10+
compose.version=1.0.0-alpha08

projects/ComposeConstraintLayout/app/src/main/java/com/example/constraintlayout/test.kt

+6-3
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,8 @@ public fun ScreenExample13() {
989989
bottom: ['parent', 'bottom', 16],
990990
custom: {
991991
background: '#FFFF00',
992-
textColor: '#000000'
992+
textColor: '#000000',
993+
textSize: 64
993994
}
994995
}
995996
}
@@ -1001,10 +1002,11 @@ public fun ScreenExample13() {
10011002
a: {
10021003
end: ['parent', 'end', 16],
10031004
top: ['parent', 'top', 16],
1004-
rotationZ: 360,
1005+
rotationZ: 0,
10051006
custom: {
10061007
background: '#0000FF',
1007-
textColor: '#FFFFFF'
1008+
textColor: '#FFFFFF',
1009+
textSize: 12
10081010
}
10091011
}
10101012
}
@@ -1017,6 +1019,7 @@ public fun ScreenExample13() {
10171019
.layoutId(properties.value.id())
10181020
.background(properties.value.color("background"))
10191021
,color = properties.value.color("textColor")
1022+
,fontSize = properties.value.fontSize("textSize")
10201023
)
10211024
}
10221025

0 commit comments

Comments
 (0)