Hi all, I am new to jetpack-compose, I have a simp...
# compose
m
Hi all, I am new to jetpack-compose, I have a simple question about the framework, what is the differences between
compose
,
anko
&
litho
? thanks!
b
you can look at this repo, that has frequently asked questions and its answers https://github.com/Mishkun/jetpack-compose-faq
and just by complementing, compose knows how to recompose yours widgets depending on its states, then you can use
@Model
or
+state{}
to memoize your state to when it's updated the widget that has its reference knows how to recompose to show the updated state, I don't know if
litho
does that but
anko
doesn't
👍 2
m
ah I see, thank you for the reference
p
Compose is more like a framework while others are view libraries