This repository was archived by the owner on Dec 27, 2024. It is now read-only.
File tree 2 files changed +8
-5
lines changed
projects/ComposeConstraintLayout/app/src/main/java/com/example/constraintlayout
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ android.enableD8.desugaring=true
6
6
android.useAndroidX =true
7
7
8
8
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
Original file line number Diff line number Diff line change @@ -989,7 +989,8 @@ public fun ScreenExample13() {
989
989
bottom: ['parent', 'bottom', 16],
990
990
custom: {
991
991
background: '#FFFF00',
992
- textColor: '#000000'
992
+ textColor: '#000000',
993
+ textSize: 64
993
994
}
994
995
}
995
996
}
@@ -1001,10 +1002,11 @@ public fun ScreenExample13() {
1001
1002
a: {
1002
1003
end: ['parent', 'end', 16],
1003
1004
top: ['parent', 'top', 16],
1004
- rotationZ: 360 ,
1005
+ rotationZ: 0 ,
1005
1006
custom: {
1006
1007
background: '#0000FF',
1007
- textColor: '#FFFFFF'
1008
+ textColor: '#FFFFFF',
1009
+ textSize: 12
1008
1010
}
1009
1011
}
1010
1012
}
@@ -1017,6 +1019,7 @@ public fun ScreenExample13() {
1017
1019
.layoutId(properties.value.id())
1018
1020
.background(properties.value.color(" background" ))
1019
1021
,color = properties.value.color(" textColor" )
1022
+ ,fontSize = properties.value.fontSize(" textSize" )
1020
1023
)
1021
1024
}
1022
1025
You can’t perform that action at this time.
0 commit comments