소스 검색

set stackview.alignment to .firstBaseline fixed the issue

nayooti 5 년 전
부모
커밋
3118c23243
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      deltachat-ios/View/ContactCell.swift

+ 1 - 0
deltachat-ios/View/ContactCell.swift

@@ -16,6 +16,7 @@ class ContactCell: UITableViewCell {
     lazy var toplineStackView: UIStackView = {
         let stackView = UIStackView(arrangedSubviews: [titleLabel, pinnedIndicator, timeLabel, locationStreamingIndicator])
         stackView.axis = .horizontal
+        stackView.alignment = .firstBaseline
         stackView.spacing = 4
         return stackView
     }()