Skip to content

Instantly share code, notes, and snippets.

@tasjapr
Forked from cedrickring/ColoredShadow.kt
Created September 12, 2022 11:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tasjapr/ed66e6ba1d70cc1c6ff65ae38500a7b4 to your computer and use it in GitHub Desktop.
Save tasjapr/ed66e6ba1d70cc1c6ff65ae38500a7b4 to your computer and use it in GitHub Desktop.
Draw a colored shadow in Android Jetpack Compose
/*
Copyright 2020 Cedric Kring.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import androidx.compose.ui.Modifier
import androidx.compose.ui.drawBehind
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.Paint
import androidx.compose.ui.graphics.drawscope.drawIntoCanvas
import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp
import androidx.compose.ui.graphics.toArgb
fun Modifier.drawColoredShadow(
color: Color,
alpha: Float = 0.2f,
borderRadius: Dp = 0.dp,
shadowRadius: Dp = 20.dp,
offsetY: Dp = 0.dp,
offsetX: Dp = 0.dp
) = this.drawBehind {
val transparentColor = color.copy(alpha = 0.0f).toArgb()
val shadowColor = color.copy(alpha = alpha).toArgb()
this.drawIntoCanvas {
val paint = Paint()
val frameworkPaint = paint.asFrameworkPaint()
frameworkPaint.color = transparentColor
frameworkPaint.setShadowLayer(
shadowRadius.toPx(),
offsetX.toPx(),
offsetY.toPx(),
shadowColor
)
it.drawRoundRect(
0f,
0f,
this.size.width,
this.size.height,
borderRadius.toPx(),
borderRadius.toPx(),
paint
)
}
}
@tasjapr
Copy link
Author

tasjapr commented Sep 12, 2022

android.graphics.Color.toArgb() the method is only available from api version 26+
this fork removes the restriction through the use of an extension

@renanboni
Copy link

it doesn't work either

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment