Фикс компиляции: padding(horizontal, bottom) → padding(start, end, bottom)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2672,7 +2672,7 @@ fun MessageSkeletonList(
|
|||||||
modifier =
|
modifier =
|
||||||
Modifier.align(Alignment.BottomStart)
|
Modifier.align(Alignment.BottomStart)
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(horizontal = 8.dp, bottom = bottomInset),
|
.padding(start = 8.dp, end = 8.dp, bottom = bottomInset),
|
||||||
verticalArrangement = Arrangement.spacedBy(4.dp)
|
verticalArrangement = Arrangement.spacedBy(4.dp)
|
||||||
) {
|
) {
|
||||||
repeat(rowCount) { index ->
|
repeat(rowCount) { index ->
|
||||||
|
|||||||
Reference in New Issue
Block a user