Loading...
This is the fastest way to use the chat function. All standard logics and navigations are already defined.
import UIKit import AmityUIKit class ClientViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } @IBAction func showChatListPage(_ sender: UIButton) { let chatHomeVC = AmityChatHomePageViewController.make() present(chatHomeVC, animated: true) } }