I'm trying to take inspiration from the Multiplatf...
# compose-android
c
I'm trying to take inspiration from the Multiplatform wizard, and well… Any tips for debugging why nothing is displayed?
z
You have the wrong
onCreate
function overridden, you need one that just takes a
Bundle?
as a parameter. This overload is just about never called, and it can be really annoying when you accidentally autocomplete this one 😄
c
Ah, thanks a lot! I knew it had to be something dumb 😐