DisposableEffectIgnoringConfiguration

A Composable function that sets up a disposable effect while ignoring configuration changes.

This variant uses a single key to determine when to recreate the effect.

Parameters

key1

The key to track changes for recreating the effect.

effect

A lambda function defining the disposable effect to execute.


A Composable function that sets up a disposable effect while ignoring configuration changes.

This variant uses two keys to track changes and determine when to recreate the effect.

Parameters

key1

The first key to track changes for recreating the effect.

key2

The second key to track changes for recreating the effect.

effect

A lambda function defining the disposable effect to execute.


A Composable function that sets up a disposable effect while ignoring configuration changes.

This variant uses three keys to track changes and determine when to recreate the effect.

Parameters

key1

The first key to track changes for recreating the effect.

key2

The second key to track changes for recreating the effect.

key3

The third key to track changes for recreating the effect.

effect

A lambda function defining the disposable effect to execute.


A Composable function that sets up a disposable effect while ignoring configuration changes.

This variant accepts a variable number of keys to track changes and determine when to recreate the effect.

Parameters

keys

A variable number of keys to track changes for recreating the effect.

effect

A lambda function defining the disposable effect to execute.