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() .closeShortcut()
.defaultSize(width: 400, height: 250) .defaultSize(width: 400, height: 250)
.title("Binding Reactor Demo") .title("Password Checker Demo")
Window(id: "navigation", open: 0) { _ in Window(id: "navigation", open: 0) { _ in
NavigationViewDemo.WindowContent() NavigationViewDemo.WindowContent()

View File

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