What's compose stand about persistent UI? Such as ...
# compose
a
What's compose stand about persistent UI? Such as keeping the same AppBar across multiple screen. Is it expected that we change the whole screen everytime in Compose?
s
You can easily use:
Copy code
MainApp {
  CommonAppBar()
  Content()
}
where Content is the dynamic screen content. Well, this is how you do it in React/Flutter afaik.
👍 2
3