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.
Last updated
Was this helpful?
Was this helpful?
let viewController = AmityCommunityHomePageViewController.make()
// push
navigationController?.pushViewController(viewController, animated: true)
// present
let navigationController = UINavigationController(rootViewController: viewController)
present(navigationController, animated: true, completion: nil)