Skip to content

Instantly share code, notes, and snippets.

View giovanileitevitor's full-sized avatar
🏠
Working from home

Giovani Leite vitor giovanileitevitor

🏠
Working from home
View GitHub Profile
fun GraphicBox(values: List<Float>, labels: List<String>) {
val context = LocalContext.current
// BarGraph Dimensions
val barGraphHeight by remember { mutableStateOf(200.dp) }
val barGraphWidth by remember { mutableStateOf(24.dp) }
Column(
modifier = Modifier
.padding(start = 10.dp, end = 10.dp, top = 4.dp)