I had a problem when following Raywenderlich Tutorial. The form view will automatically jump upward a little bit every time i clicked an item. Is this a bug
Workaround
By my findings it looks like Form layout issue, thus as a temporary solution the following workaround someone might find applicable:
Form
Form { TextField("Name", text:$task.name) Toggle("Completed", isOn: $task.completed) } .navigationBarTitle("", displayMode: .inline) // !!!