Fix avatar button and make mxid copyable. (#1678)

This commit is contained in:
Doug 2023-09-11 10:01:40 +01:00 committed by GitHub
parent bd4ee92124
commit 3db662b124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,7 @@ struct AvatarHeaderView<Footer: View>: View {
avatarSize: avatarSize,
imageProvider: imageProvider)
}
.buttonStyle(.borderless) // Add a button style to stop the whole row being tappable.
Text(name ?? id)
.foregroundColor(.compound.textPrimary)
@ -48,6 +49,7 @@ struct AvatarHeaderView<Footer: View>: View {
.foregroundColor(.compound.textSecondary)
.font(.compound.bodyLG)
.multilineTextAlignment(.center)
.textSelection(.enabled)
}
footer()

1
changelog.d/1669.bugfix Normal file
View File

@ -0,0 +1 @@
Fix avatar button size and make mxid copyable in Room/Member details screens.