This is a screen content view for creating a new Channel. This has a callback to trigger navigation to selecting users for the channel. The UI for this screen can be found in SelectChannelUsersView.

To create the channel, call state.create().

val state = remember { CreateChannelState() }
CreateChannelView(state) {
    // go to pick users
}

For a more detailed API definition, check out the API docs here.