2 // SupportUsViewController.swift
5 // Created by Pawel Dabrowski on 18/09/2018.
6 // Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
11 class SupportUsViewController: MainViewController {
13 @IBOutlet weak var textView: UITextView!
15 override func viewDidLoad() {
17 title = "support_us".localized
19 if let htmlString = try? NSAttributedString(html: "support_us_text".localized){
20 textView.attributedText = htmlString
23 textView.text = "support_us_text".localized
26 textView.tintColor = Constants.Colors.darkGreenBgColor()