Recent chat
This page shows a list of the most recent chats.
Features
Usage
import UIKit
import AmityUIKit
class ClientViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func showChatListPage(_ sender: UIButton) {
let recentChatVC = AmityRecentChatViewController.make()
present(recentChatVC, animated: true)
}
}