Skip to content

Instantly share code, notes, and snippets.

View stijndcl's full-sized avatar
🐍
Python good, Haskell bad

Stijn De Clercq stijndcl

🐍
Python good, Haskell bad
View GitHub Profile
@Khazbs
Khazbs / Theme.kt
Last active November 14, 2023 19:56
This snippet might help you make a Material Design 3 theme for your Jetpack Compose app
package my.awesome.package // put your package name here
import android.app.Activity
import android.os.Build
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.runtime.SideEffect
import androidx.compose.ui.graphics.toArgb
import androidx.compose.ui.platform.LocalContext