-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.xml
More file actions
31 lines (27 loc) · 989 Bytes
/
Copy pathapp.xml
File metadata and controls
31 lines (27 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<nemo>
<app title="My Nemo App">
<window title="Nemo Example">
<header-bar github-url="https://github.com/geoffjay/nemo/tree/main/examples/basic"
theme-toggle="true">
<menu-item label="Preferences" icon="settings" on-click="on_menu_preferences" />
<menu-item label="Documentation" icon="book" on-click="on_menu_docs" />
<menu-item separator="true" />
<menu-item label="About" icon="info" on-click="on_menu_about" />
</header-bar>
</window>
<theme name="kanagawa" mode="dark" />
</app>
<!-- Scripts configuration -->
<script src="./scripts" />
<!-- Layout configuration -->
<layout type="stack">
<label id="header" text="Welcome to Nemo" />
<panel id="content">
<button id="button" label="Click Me" on-click="on_button_click" />
</panel>
</layout>
<!-- Data sources -->
<data>
<source name="api" type="http" url="https://api.example.com" refresh="30" />
</data>
</nemo>