Navigation and menus
Navbar
navbar(label = "A super brand", type = NavbarType.FIXEDTOP, nColor = NavbarColor.DARK) {
// ...
}navbar("NavBar") {
nav {
navLink("File", icon = "fas fa-file")
navLink("Edit", icon = "fas fa-bars")
dropDown(
"Favourites",
listOf("HTML" to "#!/basic", "Forms" to "#!/forms"),
icon = "fas fa-star",
forNavbar = true
)
}
navForm {
text(label = "Search:")
checkBox(label = "Search") {
inline = true
}
}
nav(rightAlign = true) {
navLink("System", icon = "fab fa-windows")
}
}DropDown
ContextMenu
Last updated