Description:
Thank you for adding ComposeDivKitFactory and basic KMP support! While makeDivKitView() works for simple cases, production apps need more control. Currently missing:
- User action handling
- Parsing/rendering error handling
- Light/dark theme switching
Desired API Example:
ComposeDivKitFactory.makeDivKitView(
jsonString = jsonString,
theme = ComposeDivKitTheme("app_theme", "dark"),
onError = { error ->
// Handle errors
},
onUserAction = { action ->
// Handle user actions
},
)
Are there plans to expose these features?