<div class='type'>Function</div>


<a id='references'></a>
<div class='sourceset sourceset-common'>Common</div>


```kotlin
@ExperimentalFoundationStyleApi infix fun Style.then(other: Style): Style
```


Merges this styles with another. The style to the right on the `then` will overwrite the
properties set by the style to the left.

#### Parameters

| | |
| --- | --- |
| other | the style to merge into the receiver. |






<h2 id="then-next">then</h2>

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


```kotlin
fun InputTransformation.then(next: InputTransformation): InputTransformation
```


Creates a filter chain that will run `next` after this. Filters are applied sequentially, so any
changes made by this filter will be visible to `next`.

The returned filter will use the `KeyboardOptions` from `next` if non-null, otherwise it will use
the options from this transformation.

#### Parameters

| | |
| --- | --- |
| next | The `InputTransformation` that will be ran after this one. |