1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4import { Theme } from "../../theme.slint";
5import { Images } from "../../images.slint";
6import { Page } from "../page.slint";
7import { IconButton, ListView } from "../../widgets/widgets.slint";
8
9export 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