Jetpack Compose: State

preview_player
Показать описание
Learn how state flows through your app in Jetpack Compose and how the framework can automatically update to display new values. Join engineer Florina Muntenescu to see how to create automatically observable state, how to retain state across recompositions or configuration changes and how to structure your composables for optimal data flow.

#TheAndroidShow #JetpackCompose event: #TheAndroidShow: Jetpack Compose 2021; re_ty: Publish; product: Android - Jetpack Compose; fullname: Florina Muntenescu;
Рекомендации по теме
Комментарии
Автор

this video in 5 minutes explains more than other videos in an hour

AlexeySimple
Автор

I swear that it is the most useful 5 minutes explanation I've ever find in whole Android Developers video or text documentation

nasimnajand
Автор

As someone who was often skeptical about changes introduced in the Android ecosystem, I have to say I tried Compose and so far I think it's a huge improvement.

n-o-i-d
Автор

A simple rule of thumb I like to use: If multiple components use the same state the component in the highest architectural layer should hold the state and the other components should just observe it. Learned this from a book from 1999 (Refactoring) and now as android views became stateless I can apply it in Android. Today is a good day :)

adri
Автор

Probably the most useful 5 minutes video out there, explaining the most important core concepts of Jetpack Compose. Well done and thanks.

genctasbasi
Автор

Going back to Android Development after Flutter will now be easy! This is beautiful! Thank you!

dhananjaywithme
Автор

Better than reading English document boringly! THANK YOU!

鎧恩-mv
Автор

Had some issues remembering a state when using LazyColumn in Compose for Desktop. Once you used rememberSaveable a lightbulb went off and made the change in my code. Worked like a charm. Thanks!

InFeCTeDGaming
Автор

Incredible tutorial. Short and to the point but I love how it shows each possible implementation and then builds on it. Very excited to start integrating compose into our app!

michaelhighsmith
Автор

Thank you for that great overview of usage of state in Compose!
The design of the API is great!

louiscad
Автор

simple and well understandable. Thanks Florina🐣

pxnx
Автор

This is simple and great overview. I would like to suggest about including a short intro about the specific dependencies used as well.

vikas.patidar
Автор

This is what I was looking for. Thanks.

mianala
Автор

Wow!!! this video is Fantastic!!!! Very concise and clear

Matt_Yang
Автор

Thanks for Android Developer, it make develop android app more easy xD

cubevlmu
Автор

It says "Unresolved reference: viewModel".
During default parameter assignment in - fun HelloScreen(helloViewModel : HelloViewModel = viewModel()) - function.
What could be the reason, what am i missing, can anyone help ?

ugur
Автор

I'm new to compose, and see people saying managing state in hard. From first Impressions, the video seems to show something similar to what we do with our eyes closed to ReactJS

gsmtechzambia
Автор

For me, its a react in Kotlin and i love it!

BearkFearGamer
Автор

Wonderfull Explain!!! More Videos like this please!!!!

dmorales
Автор

Compose should have a way (maybe a DSL) to deal with common cases like a text field showing typed text, with less boilerplate.

Because if we need to write presentation logic to each component work properly on screen, maintain large or very complex UI can be really challenging!

Maybe we could pass the mutable state as only parameter on the Outline text field, and when we do that, the DSL already know that value is also bound with it.

renascienza.bazarclub