This repository was archived by the owner on Nov 1, 2020. It is now read-only.

Description
So I add the library in pod file and it's there in project but when I'm trying to use it I get the error.
import UIKit
class firstView: UIViewController {
@IBOutlet weak var stack_1: UIStackView!
override func viewDidLoad() {
super.viewDidLoad()
Sequents.origin(self.stack_1).anim(Animation.fadeIn).start()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
Wondering if someone can help.