Skip to content

Instantly share code, notes, and snippets.

View jozefv-git's full-sized avatar

Jozef Visnovec jozefv-git

View GitHub Profile
@jozefv-git
jozefv-git / BatteryIndicator.kt
Created May 9, 2025 16:49
Animated Battery Indicator.
import androidx.compose.animation.animateColorAsState
import androidx.compose.animation.core.RepeatMode
import androidx.compose.animation.core.StartOffset
import androidx.compose.animation.core.animateFloat
import androidx.compose.animation.core.animateFloatAsState
import androidx.compose.animation.core.infiniteRepeatable
import androidx.compose.animation.core.rememberInfiniteTransition
import androidx.compose.animation.core.tween
import androidx.compose.foundation.Canvas
import androidx.compose.foundation.Image
@jozefv-git
jozefv-git / CircularIndicatorBase.kt
Created May 8, 2025 03:34
Base version of the animated Circular progress indicator.
import androidx.compose.animation.AnimatedContent
import androidx.compose.animation.core.Animatable
import androidx.compose.animation.core.animateFloatAsState
import androidx.compose.animation.core.tween
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.aspectRatio
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding