you’re doing this ``` when(currentFile){ ...
# compose
l
you’re doing this
Copy code
when(currentFile){
            is Folder ->  FolderWidget(currentFile,onFileClicked ={currentFileState.value = it} )
            is TextFile -> TextFileWidget(currentFile)
        }
which should work fine. are you asking how to make something like your
GenericWidget
?