Skip to content

Instantly share code, notes, and snippets.

@vitorprado
Created March 1, 2021 18:16
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vitorprado/0ae4ad60c296aefafba4a157bb165e60 to your computer and use it in GitHub Desktop.
Save vitorprado/0ae4ad60c296aefafba4a157bb165e60 to your computer and use it in GitHub Desktop.
Jetpack Compose RatingBar (alpha12)
package com.components.ratingbar
import androidx.compose.foundation.Canvas
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.shape.GenericShape
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.geometry.Size
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.Path
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import kotlin.math.cos
import kotlin.math.sin
@Composable
fun RatingBar(
rating: Float,
modifier: Modifier = Modifier,
color: Color = Color.Yellow
) {
Row(modifier = modifier.wrapContentSize()) {
(1..5).forEach { step ->
val stepRating = when {
rating > step -> 1f
step.rem(rating) < 1 -> rating - (step - 1f)
else -> 0f
}
RatingStar(stepRating, color)
}
}
}
@Composable
private fun RatingStar(
rating: Float,
ratingColor: Color = Color.Yellow,
backgroundColor: Color = Color.Gray
) {
BoxWithConstraints(
modifier = Modifier
.fillMaxHeight()
.aspectRatio(1f)
.clip(starShape)
) {
Canvas(modifier = Modifier.size(maxHeight)) {
drawRect(
brush = SolidColor(backgroundColor),
size = Size(
height = size.height * 1.4f,
width = size.width * 1.4f
),
topLeft = Offset(
x = -(size.width * 0.1f),
y = -(size.height * 0.1f)
)
)
if (rating > 0) {
drawRect(
brush = SolidColor(ratingColor),
size = Size(
height = size.height * 1.1f,
width = size.width * rating
)
)
}
}
}
}
private val starShape = GenericShape { size, _ ->
addPath(starPath(size.height))
}
private val starPath = { size: Float ->
Path().apply {
val outerRadius: Float = size / 1.8f
val innerRadius: Double = outerRadius / 2.5
var rot: Double = Math.PI / 2 * 3
val cx: Float = size / 2
val cy: Float = size / 20 * 11
var x: Float = cx
var y: Float = cy
val step = Math.PI / 5
moveTo(cx, cy - outerRadius)
repeat(5) {
x = (cx + cos(rot) * outerRadius).toFloat()
y = (cy + sin(rot) * outerRadius).toFloat()
lineTo(x, y)
rot += step
x = (cx + cos(rot) * innerRadius).toFloat()
y = (cy + sin(rot) * innerRadius).toFloat()
lineTo(x, y)
rot += step
}
close()
}
}
@Preview
@Composable
fun RatingBarPreview() {
Column(
Modifier.fillMaxSize().background(Color.White)
) {
RatingBar(
3.8f,
modifier = Modifier.height(20.dp)
)
}
}
@jefisu
Copy link

jefisu commented Jul 16, 2022

Thanks, Vitor.

@codeBaron-dev
Copy link

Thanks, Vitor.

@Yuan1985
Copy link

Yuan1985 commented Sep 5, 2023

It works! Thanks,

@ibrahim4851
Copy link

Thanks, Vitor.

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