|
@@ -4,6 +4,8 @@ import android.content.res.Resources
|
|
import androidx.annotation.DrawableRes
|
|
import androidx.annotation.DrawableRes
|
|
import androidx.annotation.PluralsRes
|
|
import androidx.annotation.PluralsRes
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.runtime.Composable
|
|
|
|
+import androidx.compose.runtime.ReadOnlyComposable
|
|
|
|
+import androidx.compose.runtime.remember
|
|
import androidx.compose.ui.graphics.asImageBitmap
|
|
import androidx.compose.ui.graphics.asImageBitmap
|
|
import androidx.compose.ui.graphics.painter.BitmapPainter
|
|
import androidx.compose.ui.graphics.painter.BitmapPainter
|
|
import androidx.compose.ui.platform.LocalContext
|
|
import androidx.compose.ui.platform.LocalContext
|
|
@@ -18,6 +20,7 @@ import androidx.core.graphics.drawable.toBitmap
|
|
* @return the string data associated with the resource
|
|
* @return the string data associated with the resource
|
|
*/
|
|
*/
|
|
@Composable
|
|
@Composable
|
|
|
|
+@ReadOnlyComposable
|
|
fun quantityStringResource(@PluralsRes id: Int, quantity: Int): String {
|
|
fun quantityStringResource(@PluralsRes id: Int, quantity: Int): String {
|
|
val context = LocalContext.current
|
|
val context = LocalContext.current
|
|
return context.resources.getQuantityString(id, quantity, quantity)
|
|
return context.resources.getQuantityString(id, quantity, quantity)
|
|
@@ -32,6 +35,7 @@ fun quantityStringResource(@PluralsRes id: Int, quantity: Int): String {
|
|
* @return the string data associated with the resource
|
|
* @return the string data associated with the resource
|
|
*/
|
|
*/
|
|
@Composable
|
|
@Composable
|
|
|
|
+@ReadOnlyComposable
|
|
fun quantityStringResource(@PluralsRes id: Int, quantity: Int, vararg formatArgs: Any): String {
|
|
fun quantityStringResource(@PluralsRes id: Int, quantity: Int, vararg formatArgs: Any): String {
|
|
val context = LocalContext.current
|
|
val context = LocalContext.current
|
|
return context.resources.getQuantityString(id, quantity, *formatArgs)
|
|
return context.resources.getQuantityString(id, quantity, *formatArgs)
|
|
@@ -46,9 +50,11 @@ fun quantityStringResource(@PluralsRes id: Int, quantity: Int, vararg formatArgs
|
|
* @return the bitmap associated with the resource
|
|
* @return the bitmap associated with the resource
|
|
*/
|
|
*/
|
|
@Composable
|
|
@Composable
|
|
-fun bitmapPainterResource(@DrawableRes id: Int): BitmapPainter {
|
|
|
|
|
|
+fun rememberResourceBitmapPainter(@DrawableRes id: Int): BitmapPainter {
|
|
val context = LocalContext.current
|
|
val context = LocalContext.current
|
|
- val drawable = ContextCompat.getDrawable(context, id)
|
|
|
|
- ?: throw Resources.NotFoundException()
|
|
|
|
- return BitmapPainter(drawable.toBitmap().asImageBitmap())
|
|
|
|
|
|
+ return remember(id) {
|
|
|
|
+ val drawable = ContextCompat.getDrawable(context, id)
|
|
|
|
+ ?: throw Resources.NotFoundException()
|
|
|
|
+ BitmapPainter(drawable.toBitmap().asImageBitmap())
|
|
|
|
+ }
|
|
}
|
|
}
|