minor ui adjustment

pull/941/head
ryanzhao 2 years ago
parent 6bd7476c29
commit 5c6ab4d0af

@ -161,8 +161,8 @@ final class ConversationTitleView: UIView {
imageAttachment.bounds = CGRect( imageAttachment.bounds = CGRect(
x: 0, x: 0,
y: -2, y: -2,
width: Values.verySmallFontSize, width: Values.miniFontSize,
height: Values.verySmallFontSize height: Values.miniFontSize
) )
let notificationSettingsLabelString = NSAttributedString(attachment: imageAttachment) let notificationSettingsLabelString = NSAttributedString(attachment: imageAttachment)
@ -200,8 +200,8 @@ final class ConversationTitleView: UIView {
imageAttachment.bounds = CGRect( imageAttachment.bounds = CGRect(
x: 0, x: 0,
y: -2, y: -2,
width: Values.verySmallFontSize, width: Values.miniFontSize,
height: Values.verySmallFontSize height: Values.miniFontSize
) )
let disappearingMessageSettingLabelString = NSAttributedString(attachment: imageAttachment) let disappearingMessageSettingLabelString = NSAttributedString(attachment: imageAttachment)
@ -219,7 +219,7 @@ final class ConversationTitleView: UIView {
labelTypes: labelTypes, labelTypes: labelTypes,
labelSize: CGSize( labelSize: CGSize(
width: self?.labelCarouselViewWidth.constant ?? 0, width: self?.labelCarouselViewWidth.constant ?? 0,
height: 15 height: 14
), ),
shouldAutoScroll: false shouldAutoScroll: false
) )

@ -131,7 +131,7 @@ final class SessionLabelCarouselView: UIView, UIScrollViewDelegate {
wrapper.set(.width, to: labelSize.width) wrapper.set(.width, to: labelSize.width)
wrapper.set(.height, to: labelSize.height) wrapper.set(.height, to: labelSize.height)
let label: UILabel = UILabel() let label: UILabel = UILabel()
label.font = .systemFont(ofSize: Values.verySmallFontSize) label.font = .systemFont(ofSize: Values.miniFontSize)
label.themeTextColor = .textPrimary label.themeTextColor = .textPrimary
label.lineBreakMode = .byTruncatingTail label.lineBreakMode = .byTruncatingTail
label.attributedText = $0 label.attributedText = $0
@ -159,7 +159,7 @@ final class SessionLabelCarouselView: UIView, UIScrollViewDelegate {
addSubview(pageControl) addSubview(pageControl)
pageControl.center(.horizontal, in: self) pageControl.center(.horizontal, in: self)
pageControl.pin(.bottom, to: .bottom, of: self, withInset: 1) pageControl.pin(.bottom, to: .bottom, of: self)
scrollView.addSubview(stackView) scrollView.addSubview(stackView)
} }

@ -35,7 +35,7 @@ final class SessionTableViewTitleView: UIView {
private lazy var subtitleLabel: UILabel = { private lazy var subtitleLabel: UILabel = {
let result: UILabel = UILabel() let result: UILabel = UILabel()
result.font = .systemFont(ofSize: Values.verySmallFontSize) result.font = .systemFont(ofSize: Values.miniFontSize)
result.themeTextColor = .textPrimary result.themeTextColor = .textPrimary
result.lineBreakMode = .byTruncatingTail result.lineBreakMode = .byTruncatingTail

@ -10,6 +10,7 @@ public final class Values : NSObject {
@objc public static let highOpacity = CGFloat(0.75) @objc public static let highOpacity = CGFloat(0.75)
// MARK: - Font Sizes // 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 verySmallFontSize = isIPhone5OrSmaller ? CGFloat(10) : CGFloat(12)
@objc public static let smallFontSize = isIPhone5OrSmaller ? CGFloat(13) : CGFloat(15) @objc public static let smallFontSize = isIPhone5OrSmaller ? CGFloat(13) : CGFloat(15)
@objc public static let mediumFontSize = isIPhone5OrSmaller ? CGFloat(15) : CGFloat(17) @objc public static let mediumFontSize = isIPhone5OrSmaller ? CGFloat(15) : CGFloat(17)

Loading…
Cancel
Save