To match the reference screenshot, you need to use the Picker's label (title):
Picker("Sort direction", selection: $sortDirection) { Text("Oldest first").tag("asc") Text("Newest first").tag("desc") } .pickerStyle(.inline)