func submitScope (Bool) -> some View
func submitLabel (SubmitLabel ) -> some View
Availability 有効性
Technology
func onSubmit(of triggers: SubmitTriggers
= .text, _ action: @escaping (() -> Void
)) -> some View
triggers
The triggers that should invoke the provided action.
action
The action to perform on submission of a value.
Different views may have different triggers for the provided action. A Text
, or Secure
will trigger this action when the user hits the hardware or software return key. This modifier may also bind this action to a default action keyboard shortcut. You may set this action on an individual view or an entire view hierarchy.
TextField("Username", text: $username)
.onSubmit {
guard viewModel.validate() else { return }
viewModel.login()
}
You can use the submit
modifier to stop a submit trigger from a control from propagating higher up in the view hierarchy to higher View
modifiers.
Form {
TextField("Username", text: $viewModel.userName)
SecureField("Password", text: $viewModel.password)
TextField("Tags", text: $viewModel.tags)
.submitScope()
}
.onSubmit(of: .form) {
guard viewModel.validate() else { return }
viewModel.login()
}
You can use different submit triggers to filter the types of triggers that should invoke the provided submission action. For example, you may provide a value of search
to only hear submission triggers that originate from search fields vended by searchable modifiers.
var viewModel = ViewModel()
NavigationView {
SidebarView()
DetailView()
}
.searchable(
text: $viewModel.searchText,
placement: .sidebar
) {
SuggestionsView()
}
.onSubmit(of: .search) {
viewModel.submitCurrentSearchQuery()
}
func submitScope (Bool) -> some View
func submitLabel (SubmitLabel ) -> some View