Fix #984 follow you being out of boundaries

This commit is contained in:
Thomas Ricouard 2023-02-22 07:36:29 +01:00
parent 5ca0180c4c
commit 105b7717a9

View file

@ -23,11 +23,22 @@ struct AccountDetailHeaderView: View {
var body: some View {
VStack(alignment: .leading) {
Rectangle()
.frame(height: Constants.headerHeight)
.overlay {
headerImageView
ZStack(alignment: .bottomTrailing) {
Rectangle()
.frame(height: Constants.headerHeight)
.overlay {
headerImageView
}
if viewModel.relationship?.followedBy == true {
Text("account.relation.follows-you")
.font(.scaledFootnote)
.fontWeight(.semibold)
.padding(4)
.background(.ultraThinMaterial)
.cornerRadius(4)
.padding(8)
}
}
accountInfoView
}
}
@ -58,16 +69,6 @@ struct AccountDetailHeaderView: View {
}
.frame(height: Constants.headerHeight)
}
if viewModel.relationship?.followedBy == true {
Text("account.relation.follows-you")
.font(.scaledFootnote)
.fontWeight(.semibold)
.padding(4)
.background(.ultraThinMaterial)
.cornerRadius(4)
.padding(8)
}
}
.background(theme.secondaryBackgroundColor)
.frame(height: Constants.headerHeight)