mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-03 14:06:03 +00:00
sizes
This commit is contained in:
@@ -14,7 +14,7 @@ struct ContactListNavLink: View {
|
||||
|
||||
var body: some View {
|
||||
HStack{
|
||||
ProfileImage(imageStr: contact.image, size: 30)
|
||||
ProfileImage(imageStr: contact.image, size: 38)
|
||||
.padding(.trailing, 2)
|
||||
Text(contact.chatViewName)
|
||||
.lineLimit(1)
|
||||
|
||||
@@ -54,6 +54,7 @@ struct ContactsView: View {
|
||||
ContactListNavLink(contact: contact)
|
||||
.scaleEffect(x: 1, y: oneHandUI ? -1 : 1, anchor: .center)
|
||||
.padding(.trailing, -16)
|
||||
.frame(height: 38)
|
||||
.disabled(chatModel.chatRunning != true || chatModel.deletedChats.contains(contact.id))
|
||||
}
|
||||
.offset(x: -8)
|
||||
|
||||
@@ -248,8 +248,13 @@ struct HomeView: View {
|
||||
}
|
||||
|
||||
@ViewBuilder private func contactsView() -> some View {
|
||||
ContactsView()
|
||||
.padding(.top, 5)
|
||||
if oneHandUI {
|
||||
ContactsView()
|
||||
.padding(.vertical, 5)
|
||||
} else {
|
||||
ContactsView()
|
||||
.padding(.top, 5)
|
||||
}
|
||||
}
|
||||
|
||||
@ViewBuilder private func chatsView() -> some View {
|
||||
|
||||
Reference in New Issue
Block a user