> You are using Compose for presentation logic,...
# squarelibraries
s
You are using Compose for presentation logic, but aren’t using Compose for UI?
by "you" are you referring to Square Block? or the library?
s
yes It seems like if I was already inside of a
Composable
, instead of calling
Copy code
val modelFlow = scope.launchMolecule {
  ProfilePresenter(userFlow, balanceFlow)
}
I could just call
Copy code
val model = ProfilePresenter(userFlow, balanceFlow)
directly. I’m a Compose newb still, and am not sure if there is another benefit to Molecule that I’m not realizing, where I wouldn’t want to do that.
s
let's unthread this discussion?