Fix ExtensionsScreen padding

This commit is contained in:
Cuong-Tran 2024-06-24 13:07:51 +07:00
parent 004ecc62bb
commit b491ad4c5f
No known key found for this signature in database
GPG key ID: 733AA7624B9315C2

View file

@ -189,7 +189,11 @@ private fun ExtensionContent(
} }
ExtensionHeader( ExtensionHeader(
textRes = header.textRes, textRes = header.textRes,
modifier = Modifier.animateItemPlacement(), modifier = Modifier
// KMK -->
.padding(end = MaterialTheme.padding.small)
// KMK <--
.animateItemPlacement(),
action = action, action = action,
) )
} }