---
title: "RemoteCollapsibleColumnScope"
description: "Scope for the children of [RemoteCollapsibleColumn]."
type: "class"
lastmod: "2026-08-27"
---
## API Reference

> Source set: Android

```kotlin
public class RemoteCollapsibleColumnScope
```

Scope for the children of [RemoteCollapsibleColumn](/jetpack-compose/androidx.compose.remote/remote-creation-compose/composable-functions/RemoteCollapsibleColumn/api).

## Functions

### weight

> Source set: Android

```kotlin
public fun RemoteModifier.weight(weight: RemoteFloat): RemoteModifier
```

Sets the vertical weight of the child.

#### Parameters

| | |
| --- | --- |
| weight | The weight of the child. |

### weight

> Source set: Android

```kotlin
public fun RemoteModifier.weight(weight: Float): RemoteModifier
```

Sets the vertical weight of the child.

#### Parameters

| | |
| --- | --- |
| weight | The weight of the child. |

### collapsiblePriority

> Source set: Android

```kotlin
public fun RemoteModifier.collapsiblePriority(priority: Float): RemoteModifier
```

Sets the collapsible priority of the child.

Priority determines the order in which children are hidden when space is limited. Higher
priority items remain visible longer. Items with the same priority are hidden sequentially in
reverse layout order (last child with same priority is hidden first).

#### Parameters

| | |
| --- | --- |
| priority | The priority of the child. Can be any float value; higher values are prioritized to remain visible longer. |
