-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntroductionTextViewController
40 lines (30 loc) · 1.17 KB
/
IntroductionTextViewController
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// IntroductionTextViewController.swift
// RentAdate
//
// Created by Kassandra Capretta on 12/19/19.
// Copyright © 2019 Kassandra Capretta. All rights reserved.
//
import UIKit
// import Firebase
// import FirebaseAuth
class IntroductionTextViewController: UIViewController {
@IBOutlet weak var shadowOnView: UIView!
@IBOutlet weak var nextButtonLook: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
// Button look
Utilities.styleFilledButton(nextButtonLook)
// Shadow on View
self.shadowOnView.layer.shadowColor = UIColor.gray.cgColor
self.shadowOnView.layer.shadowOpacity = 0.5
self.shadowOnView.layer.shadowOffset = CGSize(width: 2, height: 2)
self.shadowOnView.layer.shadowRadius = 3
self.shadowOnView.layer.masksToBounds = false
}
@IBAction func nextButtonTapped(_ sender: UIButton) {
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let nextButton = storyboard.instantiateViewController(identifier: "CreateProfile1ViewController")
self.navigationController?.pushViewController(nextButton, animated: true)
}
}