소스 검색

Bump Compose BOM version 2023.04.00-beta01.1 (#9548)

Ivan Iskandar 1 년 전
부모
커밋
0189fc1f66
2개의 변경된 파일3개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 1
      gradle/compose.versions.toml
  2. 2 4
      presentation-core/src/main/java/tachiyomi/presentation/core/components/Pill.kt

+ 1 - 1
gradle/compose.versions.toml

@@ -1,6 +1,6 @@
 [versions]
 compiler = "1.4.7"
-compose-bom = "2023.04.00-alpha04"
+compose-bom = "2023.04.00-beta01.1"
 accompanist = "0.31.2-alpha"
 
 [libraries]

+ 2 - 4
presentation-core/src/main/java/tachiyomi/presentation/core/components/Pill.kt

@@ -1,11 +1,10 @@
 package tachiyomi.presentation.core.components
 
 import androidx.compose.foundation.layout.Box
-import androidx.compose.foundation.layout.IntrinsicSize
 import androidx.compose.foundation.layout.padding
-import androidx.compose.foundation.layout.requiredWidth
 import androidx.compose.material3.LocalTextStyle
 import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.Surface
 import androidx.compose.material3.Text
 import androidx.compose.runtime.Composable
 import androidx.compose.ui.Alignment
@@ -24,7 +23,7 @@ fun Pill(
     elevation: Dp = 1.dp,
     fontSize: TextUnit = LocalTextStyle.current.fontSize,
 ) {
-    androidx.compose.material3.Surface(
+    Surface(
         modifier = modifier
             .padding(start = 4.dp),
         shape = MaterialTheme.shapes.extraLarge,
@@ -34,7 +33,6 @@ fun Pill(
     ) {
         Box(
             modifier = Modifier
-                .requiredWidth(IntrinsicSize.Max)
                 .padding(6.dp, 1.dp),
             contentAlignment = Alignment.Center,
         ) {