Sujan Poudel
Sujan Poudel
I tried using this library in the widget but it didn't work. It will be great if there is a workaround for widgets.
This adds support for the wrapper around the normal setting (#155 ) to make it runtime observable. @russhwolf I have named it `runtime-observable` but we can rename it if there...
Add a way to override local for the resources (partially address #4197). Similar to how we override the density with the LocalDensity composition provider it adds LocalResourceLocale to override Locale...
Fixes #4029
If I add the konform as a dependency on commonMain that also targets ios it doesn't find the artifact for it.  It is likely...
Introduces a new style rule to fix #7480 that detects collection reversal immediately after a sorting operation. ## non-compliant ```kt listOf(1,2) .sorted() .asReversed() ``` ## compliant ```kt listOf(1,2) .sortedDescending() ```