Showing Lucra Components (Experimental)
val view = LucraClient().getLucraComponent(
this,
LucraUiProvider.LucraComponent.MiniPublicFeed(
playerIds = listOf("playerId1", "playerId2", ...
) // optional
) {
launchFlow(it) // Launch the flow as you would normally
})
viewGroup.addView(view)val view = LucraClient().getLucraComponent(
this,
LucraUiProvider.LucraComponent.ProfilePill {
launchFlow(it) // Launch the flow as you would normally
})
viewGroup.addView(view)Last updated
