소스 검색

adapt empty-view layout to overall style

reusing corner radius of the bubbles
and centering as info-messages
(the empty-view is sort of an info message as well).

this is also roughly in sync with the layout on desktop and android.
B. Petersen 2 년 전
부모
커밋
ef8f48c90f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      deltachat-ios/View/EmptyStateLabel.swift

+ 2 - 1
deltachat-ios/View/EmptyStateLabel.swift

@@ -7,8 +7,9 @@ class EmptyStateLabel: PaddingTextView {
         super.init()
         backgroundColor = DcColors.systemMessageBackgroundColor
         label.textColor = DcColors.systemMessageFontColor
-        layer.cornerRadius = 5
+        layer.cornerRadius = 16
         label.clipsToBounds = true
+        label.textAlignment = .center
         paddingTop = 15
         paddingBottom = 15
         paddingLeading = 15