-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.xml
More file actions
26 lines (22 loc) · 690 Bytes
/
app.xml
File metadata and controls
26 lines (22 loc) · 690 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
<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" />
</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>