saket
12/10/2021, 7:42 PMYou are using Compose for presentation logic, but aren’t using Compose for UI?by "you" are you referring to
spierce7
12/10/2021, 7:48 PMComposable
, instead of calling
val modelFlow = scope.launchMolecule {
ProfilePresenter(userFlow, balanceFlow)
}
I could just call
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.saket
12/10/2021, 7:58 PM