Cannot add member in Live Channel of Sample app

When creating a new Live Channel in Sample app, there’s no option of adding new member in. Is this the limitation of sample app or it’s system limitation? and what can we still add using https://docs.amity.co/chat/ios/channels#manage-members

Hello Martin,
The ability to add members to a live channel is possible by using :

AmityChatClient.newChannelRepository()
                .membership("channelId")
                .addMembers(listOf("userId"))
                .subscribe()

To answer your question, this option is missing in the sample app, but the functionality on SDK is available.