Narbase / Kunafa

Easy to use, high level framework in Kotlin for front-end web-development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BUG: Route does not work if it is directly inside page.

Kabbura opened this issue · comments

Route does not work if it is directly inside page.

page {
        route("/") {
            verticalLayout {
                textView { text = "Root" }
            }
        }
    }

As a work around, you can wrap the route inside a view (or verticalLayout/horizontalLayout).