Created
October 7, 2022 00:35
-
-
Save eliakorkmaz/9bec5b7a200fc5d45f5ada4c536bc01f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ViewController.swift | |
| // TutorialApp | |
| // | |
| import UIKit | |
| import ToDoPackage | |
| class ViewController: UIViewController { | |
| override func viewDidAppear(_ animated: Bool) { | |
| super.viewDidAppear(animated) | |
| let loginController = TodoPackage.getLoginViewController() | |
| present(loginController, animated: true, completion: nil) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment