浏览代码

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