mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Implement Settings About View
This commit is contained in:
31
iOS/SwiftUI Extensions/AttributedStringView.swift
Normal file
31
iOS/SwiftUI Extensions/AttributedStringView.swift
Normal file
@@ -0,0 +1,31 @@
|
||||
//
|
||||
// RichTextView.swift
|
||||
// NetNewsWire-iOS
|
||||
//
|
||||
// Created by Maurice Parker on 9/16/19.
|
||||
// Copyright © 2019 Ranchero Software. All rights reserved.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct AttributedStringView: UIViewRepresentable {
|
||||
|
||||
let string: NSAttributedString
|
||||
|
||||
func makeUIView(context: Context) -> UITextView {
|
||||
|
||||
let textView = UITextView()
|
||||
textView.attributedText = string
|
||||
textView.adjustsFontForContentSizeCategory = true
|
||||
textView.translatesAutoresizingMaskIntoConstraints = false
|
||||
textView.font = .preferredFont(forTextStyle: .body)
|
||||
textView.textColor = UIColor.label
|
||||
textView.backgroundColor = UIColor.secondarySystemGroupedBackground
|
||||
|
||||
return textView
|
||||
}
|
||||
|
||||
func updateUIView(_ textView: UITextView, context: Context) {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user