Using as a whole feature with the default settings

The quickest way to start using the Community feature, all the default logic and navigation has already been defined.

Usage

Create a view controller

let viewController = AmityCommunityHomePageViewController.make()

// push
navigationController?.pushViewController(viewController, animated: true)

// present
let navigationController = UINavigationController(rootViewController: viewController)
present(navigationController, animated: true, completion: nil)

Last updated