Are there any plans to address references to `Comp...
# compose
e
Are there any plans to address references to
Composable
functions? Doesn't look like these issues have had much activity recently. https://youtrack.jetbrains.com/issue/KT-34900 https://issuetracker.google.com/issues/149424759
Currently I have to do this:
Copy code
override val view = @Composable { state: HomeViewState, onIntent: (HomeIntent) -> Unit -> HomeView(state, onIntent) }
where I'd much rather do this (which I think would work if references were allowed):
Copy code
override val view = ::HomeView
s
It is technically solvable with k2 now, wasn't really possible before
K 2
j
That's kind of similar to the viewbuilder style in SwiftUI right? That's what that reminds me of