Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LoopKitUI/Views/CardList/TimePicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public struct TimePicker: View {
self.text(for: time)
}
}
.pickerStyle(.wheel)
.labelsHidden()
}

Expand Down
2 changes: 1 addition & 1 deletion LoopKitUI/Views/ExpandablePicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public struct ExpandablePicker: View {
Text(self.items[$0])
}
}
.pickerStyle(WheelPickerStyle())
.pickerStyle(.wheel)
.labelsHidden()
}
}
Expand Down
2 changes: 1 addition & 1 deletion LoopKitUI/Views/QuantityPicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public struct QuantityPicker: View {
public var body: some View {
picker
.labelsHidden()
.pickerStyle(WheelPickerStyle())
.pickerStyle(.wheel)
.overlayPreferenceValue(PickerValueBoundsKey.self, unitLabel(positionedFrom:))
.accessibility(identifier: "quantity_picker")
}
Expand Down