Update demo title and description

This commit is contained in:
Ira Limitanei 2024-07-04 11:43:59 +09:00
parent a84d94cca5
commit 61f985f0d0
No known key found for this signature in database
GPG Key ID: 3B416C2117091FF3
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ struct Demo: App {
}
.closeShortcut()
.defaultSize(width: 400, height: 250)
.title("Binding Reactor Demo")
.title("Password Checker Demo")
Window(id: "navigation", open: 0) { _ in
NavigationViewDemo.WindowContent()

View File

@ -47,7 +47,7 @@ enum Page: String, Identifiable, CaseIterable, Codable, CustomStringConvertible
case .alertDialog:
return "Alert Dialog"
case .passwordChecker:
return "Binding Reactor"
return "Password Checker"
default:
return rawValue.capitalized
}
@ -91,7 +91,7 @@ enum Page: String, Identifiable, CaseIterable, Codable, CustomStringConvertible
case .form:
return "Group controls used for data entry"
case .passwordChecker:
return "React to binding variable changes"
return "Check the validity of a password"
case .popover:
return "Present content in a bubble-like context popup"
case .flowBox: