OrganizationListView

fun OrganizationListView(modifier: Modifier = Modifier, clerkTheme: ClerkTheme? = null, hidePersonalAccount: Boolean = false, isDismissible: Boolean = true, skipPostCreateInviteFlow: Boolean = false, onDismissRequest: () -> Unit? = null, onCreateOrganization: (OrganizationCreationDefaults?) -> Unit? = null, onAccountSelected: (String?) -> Unit? = null)

Standalone account and organization picker.

The list includes the signed-in user's personal account when allowed, organization memberships, pending invitations, suggested organizations, and a create-organization action when creation is enabled for the current user.

Parameters

clerkTheme

Optional theme customization for the list UI.

hidePersonalAccount

Hides the personal account row even when personal account selection is allowed.

isDismissible

Shows a top dismiss affordance and calls onDismissRequest after a successful selection when possible.

skipPostCreateInviteFlow

Skips the post-create invitation step in the default create-organization flow.

onDismissRequest

Called when the dismiss affordance is pressed or a dismissible selection completes.

onCreateOrganization

Optional callback for apps that own create-organization navigation. When null, the list opens Clerk's default create-organization flow.

onAccountSelected

Called after selecting the personal account (null) or an organization ID.