Daria Voronina [JB]
01/25/2024, 9:12 AMRes
class.
- New support for font and string resources.
- Support for various screen densities, multiple languages and regions, and light and dark themes.
π Experimental support is available for tests in common code.
π Compose Multiplatform for Web artifacts are now available in Maven Central.
π The TextField
component now exhibits more native caret behavior on iOS with a single or long tap.
π Support for text trimming with the LineHeightStyle.Trim
parameter is available.
π System fonts can be loaded by name on desktop and web platforms.
kodee walking Learn about other improvements in this release and update to 1.6.0-beta01 for a better developer experience! ‡οΈGarret Yoder
01/25/2024, 4:00 PMGarret Yoder
01/25/2024, 4:16 PMGarret Yoder
01/25/2024, 4:43 PMGarret Yoder
01/25/2024, 4:47 PMTodd
01/25/2024, 4:54 PMKonstantin Tskhovrebov
01/25/2024, 4:54 PMGarret Yoder
01/25/2024, 5:04 PMGarret Yoder
01/26/2024, 2:38 PMIvan Matkov
01/26/2024, 2:43 PMGarret Yoder
01/26/2024, 2:45 PMIvan Matkov
01/26/2024, 2:46 PMit'll get pushed w/ the next dev buildyes
today or mondayci is scheduled at night between monday and tuesday
Garret Yoder
01/26/2024, 2:47 PMGarret Yoder
01/30/2024, 3:42 PMIvan Matkov
01/30/2024, 3:44 PMIgor Demin
01/30/2024, 3:54 PMandroidMain {
implementation("androidx.compose.foundation:foundation:1.6.0")
}
Garret Yoder
01/30/2024, 3:59 PMIgor Demin
01/30/2024, 3:59 PMGarret Yoder
01/30/2024, 4:00 PMIgor Demin
01/30/2024, 4:01 PMGarret Yoder
01/30/2024, 4:03 PMGarret Yoder
01/30/2024, 4:07 PMIgor Demin
01/30/2024, 4:12 PMGarret Yoder
01/30/2024, 4:32 PMGarret Yoder
01/30/2024, 4:33 PMGarret Yoder
01/30/2024, 7:23 PMGarret Yoder
01/30/2024, 7:25 PMIgor Demin
02/01/2024, 4:58 AMhttps://github.com/garretyoder/ReproduceSampleThis is because some library already uses
1.6.0-beta01
.
And when you use 1.6.0-dev1397
, Gradle chooses 1.6.0-beta01
instead.
To check that everything is fixed, you can force this version:
configurations.all {
resolutionStrategy.eachDependency {
if (
requested.group.startsWith("org.jetbrains.compose.runtime") ||
requested.group.startsWith("org.jetbrains.compose.ui") ||
requested.group.startsWith("org.jetbrains.compose.foundation") ||
requested.group.startsWith("org.jetbrains.compose.material") ||
requested.group.startsWith("org.jetbrains.compose.material3")
) {
useVersion("1.6.0-dev1397")
}
}
}
Garret Yoder
02/01/2024, 3:35 PMMarco Pierucci
02/26/2024, 3:22 PMKonstantin Tskhovrebov
02/26/2024, 3:58 PMJavier
02/26/2024, 4:00 PMMarco Pierucci
02/26/2024, 4:05 PMMarco Pierucci
02/26/2024, 4:06 PMKonstantin Tskhovrebov
02/26/2024, 4:12 PM