Adds some margin for reply quotes

This commit is contained in:
Vitor Pamplona
2023-04-22 15:14:00 -04:00
parent 9c715dd381
commit c1d05f8b2f
2 changed files with 9 additions and 9 deletions

View File

@@ -148,14 +148,6 @@ fun ZoomableContentView(content: ZoomableContent, images: List<ZoomableContent>
)
if (content is ZoomableImage) {
if (imageState !is AsyncImagePainter.State.Success) {
if (content.bluehash != null) {
DisplayBlueHash(content, mainImageModifier)
} else {
DisplayUrlWithLoadingSymbol(content)
}
}
Box() {
AsyncImage(
model = content.url,
@@ -174,6 +166,14 @@ fun ZoomableContentView(content: ZoomableContent, images: List<ZoomableContent>
HashVerificationSymbol(verifiedHash, Modifier.align(Alignment.TopEnd))
}
}
if (imageState !is AsyncImagePainter.State.Success) {
if (content.bluehash != null) {
DisplayBlueHash(content, mainImageModifier)
} else {
DisplayUrlWithLoadingSymbol(content)
}
}
} else {
VideoView(content.url) { dialogOpen = true }
}

View File

@@ -375,7 +375,7 @@ fun NoteComposeInner(
baseNote = replyingDirectlyTo,
isQuotedNote = true,
modifier = Modifier
.padding(0.dp)
.padding(top = 5.dp)
.fillMaxWidth()
.clip(shape = RoundedCornerShape(15.dp))
.border(