Skip to content

Instantly share code, notes, and snippets.

View rmkrishna's full-sized avatar

Muthukrishnan rmkrishna

View GitHub Profile
import java.util.*
import android.telephony.TelephonyManager
class Country(
val nameCode: String,
val code: String,
val fullName: String
) {}
fun getFlagEmojiFor(countryCode: String): String {
@alexjlockwood
alexjlockwood / CircleSquare.kt
Last active September 26, 2020 17:52
A circle square animation implemented using Jetpack Compose. Inspired by @beesandbombs (twitter.com/beesandbombs).
package com.alexjlockwood.circlesquare
import androidx.compose.animation.animatedFloat
import androidx.compose.animation.core.AnimationConstants
import androidx.compose.animation.core.LinearEasing
import androidx.compose.animation.core.repeatable
import androidx.compose.animation.core.tween
import androidx.compose.foundation.Canvas
import androidx.compose.runtime.Composable