This page consists of one component in a single tab.
Last updated 8 days ago
Recent chat
import UIKit import AmityUIKit class ClientViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } @IBAction func showChatListPage(_ sender: UIButton) { let chatHomePageVC = AmityChatHomePageViewController.make() present(chatHomePageVC, animated: true) } }