<@U0H8K7DEV> example code (snippet using materiald...
# kweb
s
@Ian example code (snippet using materialdesignlight) with using "classical Java-like access to completable futures":
Copy code
doc.body.apply{
                mdl.layout(fixedHeader = true).apply{
                    content().apply {
                        tabs().apply {
                            panel("test").apply{
                                textField().apply{
                                    change(doc.cookie.get<String>("textFieldValue").get()?:"")
                                }
                            }
                        }
                    }
                }
            }