If you’ve ever read any Compose code, you’ve probably seen this at least a million times:
var text by remember { mutableStateOf(“”) }
What the heck is that? There’s a lot going on. The goal of this post is to pull the pieces apart, show how which parts do what, and how they all fit together.
Report Story