<div class='sourceset sourceset-common'>Common</div>

```kotlin
class StaggeredGridItemSpan private constructor(internal val value: Int)
```

Span defines a number of lanes (columns in vertical grid/rows in horizontal grid) for staggered
grid items. Two variations of span are supported:
- item taking a single lane ([SingleLane]);
- item all lanes in line ([FullLine]). By default, staggered grid uses [SingleLane] for all items.

## Companion Object

#### Properties

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val FullLine = StaggeredGridItemSpan(0)
```

Force item to occupy whole line in cross axis.

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val SingleLane = StaggeredGridItemSpan(1)
```

Force item to use a single lane.