There is currently no post button in the screen (check the screenshot) - is there a way to activate this?
The example code is kinda ugly, it only works if a user is only enrolled in one group. Is it not possible to create the AmityPostCreatorViewController based on the .communityFeed(communityId: "XXXXXX") / communityId similar to the AmityFeedViewController?? Seems a whole lot cleaner.
This issue is related to the presentation style, the presentation style must be overFullScreen: modalPresentationStyle = .overFullScreen
Because the post button is a part of navigationItem, we need to present it full screen to be able to see the navigation bar with navigation Items
let postCreatorViewController = AmityPostCreatorViewController.make(postTarget: postTarget)
let navigationController = UINavigationController(rootViewController: postCreatorViewController)
navigationController.modalPresentationStyle = .overFullScreen
present(navigationController, animated: true, completion: nil)