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 29e1a12953
commit bbd49b094b
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.