Skip to content

Instantly share code, notes, and snippets.

View LuizTM's full-sized avatar
🎯
Focusing

Luiz T. LuizTM

🎯
Focusing
View GitHub Profile
@LuizTM
LuizTM / DIExample.kt
Last active June 11, 2025 06:08
Kotlin DI Scratch
package com.luiztm.ui.dependency
import kotlin.reflect.KClass
//interface Analytics
interface Analytics {
fun doSomething(): String
}
fun Map<String, () -> Any>.injectAnalytics(): Lazy<Analytics> = lazy {
@LuizTM
LuizTM / customtab.kt
Last active June 17, 2026 12:09
custom tabbar template
package com.example.playground.compose
import androidx.compose.foundation.background
import androidx.compose.foundation.indication
import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.aspectRatio
import androidx.compose.foundation.layout.fillMaxSize