Loading...
This page consists of one component in a single tab.
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) } }
This page shows a list of the most recent chats.
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) } }
Feature
Description
Recent chat list
User can see a list of the most recent chats
Navigation to Message list
When a user selects a chat, UIKit opens a chatroom page