Package-level declarations

Types

Link copied to clipboard

Controls how OrganizationSwitcher renders its trigger.

Functions

Link copied to clipboard
fun OrganizationSwitcher(modifier: Modifier = Modifier, clerkTheme: ClerkTheme? = null, onOrganizationChanged: () -> Unit? = null, hidePersonal: Boolean = false, displayMode: OrganizationSwitcherDisplayMode = OrganizationSwitcherDisplayMode.Normal, onManageOrganization: (OrganizationMembership) -> Unit? = null, onCreateOrganization: (OrganizationCreationDefaults?) -> Unit? = null, organizationProfileCustomRows: List<OrganizationProfileCustomRow> = emptyList(), organizationProfileCustomDestination: @Composable (String) -> Unit? = null)

Self-contained active organization switcher.

fun OrganizationSwitcher(modifier: Modifier = Modifier, clerkTheme: ClerkTheme? = null, onOrganizationChanged: () -> Unit? = null, hidePersonal: Boolean = false, displayMode: OrganizationSwitcherDisplayMode = OrganizationSwitcherDisplayMode.Normal, triggerContent: @Composable () -> Unit, onManageOrganization: (OrganizationMembership) -> Unit? = null, onCreateOrganization: (OrganizationCreationDefaults?) -> Unit? = null, organizationProfileCustomRows: List<OrganizationProfileCustomRow> = emptyList(), organizationProfileCustomDestination: @Composable (String) -> Unit? = null)

Self-contained active organization switcher with a custom trigger.