How To Create And Use a Custom Theme in Jetpack Compose

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Why the algorithm has never recommended your channel for me ?
I love your explanations, fast (no stallings), precise, in point, and rich of information, BRAVO 👏👏👏

jaml
Автор

Great video bro! It was very easy to follow, and you did a great job at explaining. Subscribed.

xkall
Автор

This is a very great explanation regarding the custom theme in compose. Great job. 👍

sooshil
Автор

Thank you for the video, your tutorial helped me a lot to solve the problem that I was facing.

mohnishkumarchittoory
Автор

Very well explained. Can I use the same steps for defining a custom theme for Compose Multiplatform project?

UUniverse
Автор

thank you, really great explanation. now i feel confident to create my own themes :D

Sokh
Автор

Iam learning a lot from this guy. thank you

anasabubakar
Автор

Getting error at 03:35 : Unresolved reference: Unspecified

sahilmhapsekar
Автор

Could you please elaborate more on what the danger you talked about is at 3:20?
How it can occur and how it an be avoided?

sooshil
Автор

So you need to create a wrapper for everysingle ui component in order to use your theme right?

alanesaugarciagutierrez
Автор

@Composable
fun AppTheme(
isDarkTheme: Boolean = isSystemInDarkTheme(),
content: @Composable () -> Unit
) {
val colorScheme = if (isDarkTheme) darkColorScheme else lightColorScheme
val rippleIndication = rememberRipple()
CompositionLocalProvider(
LocalAppColorScheme provides colorScheme,
LocalAppTypography provides typography,
LocalAppShape provides shape,
LocalAppSize provides size,
LocalIndication provides rippleIndication,
content = content
)
}

getting error on LocalApp related provides can you help me out

HumayoonSiddique-ll