1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | import { Theme } from "../../theme.slint" ; |
5 | import { Images } from "../../images.slint" ; |
6 | import { Page } from "../page.slint" ; |
7 | import { IconButton, ListView } from "../../widgets/widgets.slint" ; |
8 | |
9 | export global MenuOverviewAdapter { |
10 | in property <[StandardListViewItem]> model: [ |
11 | { text: "Production & Self-consumption" }, |
12 | { text: "Usage" }, |
13 | { text: "Balance" }, |
14 | { text: "Weather" }, |
15 | { text: "About" }, |
16 | ]; |
17 | in-out property <int> current-page; |
18 | out property <int> count: model.length; |
19 | } |
20 | |