compose-multiplatform icon indicating copy to clipboard operation
compose-multiplatform copied to clipboard

overridable resource locale

Open psuzn opened this issue 2 months ago • 3 comments

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 for Resource.

Usage

 CompositionLocalProvider(LocalResourceLocale provides Locale("np")) {
  Text(stringResource(Res.string.hello))
}

psuzn avatar Apr 26 '24 06:04 psuzn