PartsRS/material-1.0/ui/items/navigation_item.slint
2025-11-07 14:04:55 +01:00

15 lines
296 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
export struct NavigationItem {
icon: image,
selected_icon: image,
text: string,
show_badge: bool,
badge: string
}
export struct NavigationGroup {
title: string,
items: [NavigationItem]
}