<div class='sourceset sourceset-android'>Android</div>

```kotlin
public value class Radial internal constructor(internal val ratio: Float)
```

How to lay down components when they are thinner than the container. This is analogue of
[Alignment.Vertical](/jetpack-compose/androidx.glance/glance/classes/Alignment.Vertical) in a [Row](/jetpack-compose/androidx.compose.foundation/foundation-layout/composable-functions/Row).

## Companion Object

#### Properties

<div class='sourceset sourceset-android'>Android</div>

```kotlin
public val Inner: Radial
```

Put the child closest to the center of the container, within the available space

<div class='sourceset sourceset-android'>Android</div>

```kotlin
public val Center: Radial
```

Put the child in the middle point of the available space.

<div class='sourceset sourceset-android'>Android</div>

```kotlin
public val Outer: Radial
```

Put the child farthest from the center of the container, within the available space

#### Methods

<h2 id="custom-ratio">Custom</h2>

<div class='sourceset sourceset-android'>Android</div>

```kotlin
public fun Custom(ratio: Float): Radial
```

Align the child in a custom position, 0 means Outer, 1 means Inner