Add new window for binding reactor demo

This commit is contained in:
Ira Limitanei 2024-06-14 18:00:24 +09:00
parent 1723fcdf22
commit 2dd5c52930
No known key found for this signature in database
GPG Key ID: 3B416C2117091FF3

View File

@ -55,6 +55,13 @@ struct Demo: App {
.closeShortcut()
.defaultSize(width: 400, height: 250)
.title("Form Demo")
Window(id: "binding-reactor-demo", open: 0) { _ in
BindingReactorDemo.WindowContent()
}
.closeShortcut()
.defaultSize(width: 400, height: 250)
.title("Binding Reactor Demo")
Window(id: "navigation", open: 0) { _ in
NavigationViewDemo.WindowContent()
}