mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
20 lines
516 B
Swift
20 lines
516 B
Swift
import SwiftUI
|
|
|
|
struct AcknowledgmentsView: View {
|
|
var body: some View {
|
|
ScrollingTextView(
|
|
attributedString: NSAttributedString(
|
|
rtf: try! Data(contentsOf: Bundle.main.url(forResource: "Licenses", withExtension: "rtf")!),
|
|
documentAttributes: nil
|
|
)!
|
|
)
|
|
.frame(minWidth: 500, minHeight: 500)
|
|
}
|
|
}
|
|
|
|
|
|
struct AcknowledgementsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
AcknowledgmentsView()
|
|
}
|
|
}
|