From 5c6ab4d0af82370228c7fd998088e69561d8d147 Mon Sep 17 00:00:00 2001 From: ryanzhao Date: Tue, 29 Nov 2022 14:33:07 +1100 Subject: [PATCH] minor ui adjustment --- .../Views & Modals/ConversationTitleView.swift | 10 +++++----- .../Views & Modals/SessionLabelCarouselView.swift | 4 ++-- Session/Shared/SessionTableViewTitleView.swift | 2 +- SessionUIKit/Style Guide/Values.swift | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Session/Conversations/Views & Modals/ConversationTitleView.swift b/Session/Conversations/Views & Modals/ConversationTitleView.swift index f551dff94..66f79e847 100644 --- a/Session/Conversations/Views & Modals/ConversationTitleView.swift +++ b/Session/Conversations/Views & Modals/ConversationTitleView.swift @@ -161,8 +161,8 @@ final class ConversationTitleView: UIView { imageAttachment.bounds = CGRect( x: 0, y: -2, - width: Values.verySmallFontSize, - height: Values.verySmallFontSize + width: Values.miniFontSize, + height: Values.miniFontSize ) let notificationSettingsLabelString = NSAttributedString(attachment: imageAttachment) @@ -200,8 +200,8 @@ final class ConversationTitleView: UIView { imageAttachment.bounds = CGRect( x: 0, y: -2, - width: Values.verySmallFontSize, - height: Values.verySmallFontSize + width: Values.miniFontSize, + height: Values.miniFontSize ) let disappearingMessageSettingLabelString = NSAttributedString(attachment: imageAttachment) @@ -219,7 +219,7 @@ final class ConversationTitleView: UIView { labelTypes: labelTypes, labelSize: CGSize( width: self?.labelCarouselViewWidth.constant ?? 0, - height: 15 + height: 14 ), shouldAutoScroll: false ) diff --git a/Session/Conversations/Views & Modals/SessionLabelCarouselView.swift b/Session/Conversations/Views & Modals/SessionLabelCarouselView.swift index 7235b57bd..f3b74bdf8 100644 --- a/Session/Conversations/Views & Modals/SessionLabelCarouselView.swift +++ b/Session/Conversations/Views & Modals/SessionLabelCarouselView.swift @@ -131,7 +131,7 @@ final class SessionLabelCarouselView: UIView, UIScrollViewDelegate { wrapper.set(.width, to: labelSize.width) wrapper.set(.height, to: labelSize.height) let label: UILabel = UILabel() - label.font = .systemFont(ofSize: Values.verySmallFontSize) + label.font = .systemFont(ofSize: Values.miniFontSize) label.themeTextColor = .textPrimary label.lineBreakMode = .byTruncatingTail label.attributedText = $0 @@ -159,7 +159,7 @@ final class SessionLabelCarouselView: UIView, UIScrollViewDelegate { addSubview(pageControl) pageControl.center(.horizontal, in: self) - pageControl.pin(.bottom, to: .bottom, of: self, withInset: 1) + pageControl.pin(.bottom, to: .bottom, of: self) scrollView.addSubview(stackView) } diff --git a/Session/Shared/SessionTableViewTitleView.swift b/Session/Shared/SessionTableViewTitleView.swift index d1bd0ca6a..422cdccc3 100644 --- a/Session/Shared/SessionTableViewTitleView.swift +++ b/Session/Shared/SessionTableViewTitleView.swift @@ -35,7 +35,7 @@ final class SessionTableViewTitleView: UIView { private lazy var subtitleLabel: UILabel = { let result: UILabel = UILabel() - result.font = .systemFont(ofSize: Values.verySmallFontSize) + result.font = .systemFont(ofSize: Values.miniFontSize) result.themeTextColor = .textPrimary result.lineBreakMode = .byTruncatingTail diff --git a/SessionUIKit/Style Guide/Values.swift b/SessionUIKit/Style Guide/Values.swift index fd03c9dcb..1d1273271 100644 --- a/SessionUIKit/Style Guide/Values.swift +++ b/SessionUIKit/Style Guide/Values.swift @@ -10,6 +10,7 @@ public final class Values : NSObject { @objc public static let highOpacity = CGFloat(0.75) // MARK: - Font Sizes + @objc public static let miniFontSize = isIPhone5OrSmaller ? CGFloat(9) : CGFloat(11) @objc public static let verySmallFontSize = isIPhone5OrSmaller ? CGFloat(10) : CGFloat(12) @objc public static let smallFontSize = isIPhone5OrSmaller ? CGFloat(13) : CGFloat(15) @objc public static let mediumFontSize = isIPhone5OrSmaller ? CGFloat(15) : CGFloat(17)