mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-27 12:59:17 +01:00
Fix #984 follow you being out of boundaries
This commit is contained in:
parent
5ca0180c4c
commit
105b7717a9
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user