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

bump release numbers for core and compose #252

Merged
merged 1 commit into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions constraintlayout/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ android.enableD8.desugaring=true
android.useAndroidX=true

constraintlayout.version=2.1.0-beta02
core.version=1.0.0-beta02
compose.version=1.0.0-alpha07
core.version=1.0.0-beta03
compose.version=1.0.0-alpha08
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,8 @@ public fun ScreenExample13() {
bottom: ['parent', 'bottom', 16],
custom: {
background: '#FFFF00',
textColor: '#000000'
textColor: '#000000',
textSize: 64
}
}
}
Expand All @@ -1001,10 +1002,11 @@ public fun ScreenExample13() {
a: {
end: ['parent', 'end', 16],
top: ['parent', 'top', 16],
rotationZ: 360,
rotationZ: 0,
custom: {
background: '#0000FF',
textColor: '#FFFFFF'
textColor: '#FFFFFF',
textSize: 12
}
}
}
Expand All @@ -1017,6 +1019,7 @@ public fun ScreenExample13() {
.layoutId(properties.value.id())
.background(properties.value.color("background"))
,color = properties.value.color("textColor")
,fontSize = properties.value.fontSize("textSize")
)
}

Expand Down