Chat Home Page

This page consists of one component in a single tab.

Components

  • Recent chat

Usage

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)
    }
}

Last updated