At 9:05 of this video <https://youtu.be/SMOhl9RK0B...
# compose
o
At 9:05 of this video

https://youtu.be/SMOhl9RK0BAâ–¾

,
val annotedText = remember(text) { parseAnnotated(text) }
is being used. Any reason why remember is being used here instead of
val annotatedText = derivedStateOf { parseAnnotated(text) }
? Is it simply because of text being a function param/prop instead of being state?
👀 1