mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-19 21:15:21 +00:00
COVIDSafe code from version 2.0 (#37)
This commit is contained in:
parent
cf93ea43c0
commit
8b75c1fc6f
55 changed files with 4624 additions and 1117 deletions
23
CovidSafe/HowItWorksViewController.swift
Normal file
23
CovidSafe/HowItWorksViewController.swift
Normal file
|
@ -0,0 +1,23 @@
|
|||
//
|
||||
// HowItWorksViewController.swift
|
||||
// CovidSafe
|
||||
//
|
||||
// Copyright © 2020 Australian Government. All rights reserved.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
class HowItWorksViewController: UIViewController {
|
||||
|
||||
@IBOutlet weak var textView: UITextView!
|
||||
|
||||
@IBAction func onBackTapped(_ sender: UIButton) {
|
||||
self.navigationController?.popViewController(animated: true)
|
||||
}
|
||||
|
||||
override func viewDidLoad() {
|
||||
super.viewDidLoad()
|
||||
textView.textContainer.lineFragmentPadding = 0.0
|
||||
textView.addLink(URLHelper.getHelpURL(), enclosedIn: "*")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue