Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created January 23, 2025 02:25
Show Gist options
  • Save skydoves/5189683724c9e2ba7f2b7647ca5ddbc9 to your computer and use it in GitHub Desktop.
Save skydoves/5189683724c9e2ba7f2b7647ca5ddbc9 to your computer and use it in GitHub Desktop.
video_theme
public fun VideoTheme(
isInDarkMode: Boolean = isSystemInDarkTheme(),
colors: StreamColors = StreamColors.defaultColors(),
content: @Composable () -> Unit,
) {
CompositionLocalProvider(
LocalColors provides colors,
) {
content()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment