Skip to content

Instantly share code, notes, and snippets.

@jmadaminov
Last active May 22, 2022 21:07
Show Gist options
  • Save jmadaminov/f7a00f135d50f3a483d67746259dd0ab to your computer and use it in GitHub Desktop.
Save jmadaminov/f7a00f135d50f3a483d67746259dd0ab to your computer and use it in GitHub Desktop.
Two Bitmaps
...
val bg = Bitmap.createScaledBitmap(
BitmapFactory.decodeResource(
LocalContext.current.resources,
R.drawable.samarkand
), screenWidthPx, screenWidthPx, true
)
val bgBlurred = Bitmap.createScaledBitmap(
BitmapFactory.decodeResource(
LocalContext.current.resources,
R.drawable.samarkand_blurred
), screenWidthPx, screenWidthPx, true
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment