Chris Fillmore
04/06/2021, 1:12 AM@Composable
method on an interface? something like:
interface ImageLoader {
@Composable
fun Image(url: String)
}
I have similar code implemented right now, which compiles but throws NoSuchMethodError at runtimeZach Klippenstein (he/him) [MOD]
04/06/2021, 1:21 AMChris Fillmore
04/06/2021, 1:22 AMjava.lang.NoSuchMethodError: No interface method Image(Ljava/lang/String;Ljava/lang/String;Landroidx/compose/ui/Modifier;Landroidx/compose/ui/layout/ContentScale;Landroidx/compose/runtime/Composer;I)V
Adam Powell
04/06/2021, 1:23 AMChris Fillmore
04/06/2021, 1:23 AMAdam Powell
04/06/2021, 1:25 AMComposer
and the Int
(the I
) at the end of a @Composable
function's parameter listChris Fillmore
04/06/2021, 1:33 AM