Fix vertical spacing bug
This commit is contained in:
@@ -18,7 +18,7 @@ struct ProfileNameView: View {
|
|||||||
var body: some View {
|
var body: some View {
|
||||||
Group {
|
Group {
|
||||||
if let real_name = profile?.display_name {
|
if let real_name = profile?.display_name {
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading, spacing: 0) {
|
||||||
Text(real_name)
|
Text(real_name)
|
||||||
.font(.title3.weight(.bold))
|
.font(.title3.weight(.bold))
|
||||||
HStack(alignment: .center, spacing: spacing) {
|
HStack(alignment: .center, spacing: spacing) {
|
||||||
@@ -30,6 +30,7 @@ struct ProfileNameView: View {
|
|||||||
FollowsYou()
|
FollowsYou()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Spacer()
|
||||||
KeyView(pubkey: pubkey)
|
KeyView(pubkey: pubkey)
|
||||||
.pubkey_context_menu(bech32_pubkey: pubkey)
|
.pubkey_context_menu(bech32_pubkey: pubkey)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user