Recent chat
This page shows a list of the most recent chats.
Features
User can see a list of the most recent chats
Navigation to Message list
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)
}
}