I'm trying to recreate a Preferences screen in Compose but I'm not sure what's the best way to implement the disabled state of an item.
Here is an example of the disabled state:

With the old TextView I can easily use the method setEnabled(), that will take care for me to disable click listeners and change the textColor.
The Text() composable doesn't seem to implement this feature so, I was wondering if there is an easy way to achieve the same result.
Ideally, I would like find an easy way to get the default disabled color or the default alpha to apply to the current text color to achieve the disabled look.