---
title: "RemoteAbsoluteAlignment"
description: "A collection of common [RemoteAlignment]s unaware of the layout direction."
type: "object"
lastmod: "2026-08-27"
---
## API Reference

> Source set: Android

```kotlin
public object RemoteAbsoluteAlignment
```

A collection of common [RemoteAlignment](/jetpack-compose/androidx.compose.remote/remote-creation-compose/interfaces/RemoteAlignment/api)s unaware of the layout direction.

## Properties

### TopLeft

> Source set: Android

```kotlin
public val TopLeft: RemoteAlignment =
        RemoteBiasAbsoluteAlignment(ColumnLayout.START, ColumnLayout.TOP)
```

The child is positioned at the top-left corner of the parent.

### TopRight

> Source set: Android

```kotlin
public val TopRight: RemoteAlignment =
        RemoteBiasAbsoluteAlignment(ColumnLayout.END, ColumnLayout.TOP)
```

The child is positioned at the top-right corner of the parent.

### CenterLeft

> Source set: Android

```kotlin
public val CenterLeft: RemoteAlignment =
        RemoteBiasAbsoluteAlignment(ColumnLayout.START, ColumnLayout.CENTER)
```

The child is positioned at the center-left edge of the parent.

### CenterRight

> Source set: Android

```kotlin
public val CenterRight: RemoteAlignment =
        RemoteBiasAbsoluteAlignment(ColumnLayout.END, ColumnLayout.CENTER)
```

The child is positioned at the center-right edge of the parent.

### BottomLeft

> Source set: Android

```kotlin
public val BottomLeft: RemoteAlignment =
        RemoteBiasAbsoluteAlignment(ColumnLayout.START, ColumnLayout.BOTTOM)
```

The child is positioned at the bottom-left corner of the parent.

### BottomRight

> Source set: Android

```kotlin
public val BottomRight: RemoteAlignment =
        RemoteBiasAbsoluteAlignment(ColumnLayout.END, ColumnLayout.BOTTOM)
```

The child is positioned at the bottom-right corner of the parent.

### Left

> Source set: Android

```kotlin
public val Left: RemoteAlignment.Horizontal =
        RemoteBiasAbsoluteAlignment.Horizontal(ColumnLayout.START)
```

The child is positioned at the left edge of the parent.

### Right

> Source set: Android

```kotlin
public val Right: RemoteAlignment.Horizontal =
        RemoteBiasAbsoluteAlignment.Horizontal(ColumnLayout.END)
```

The child is positioned at the right edge of the parent.
