Last active
April 2, 2023 07:01
-
-
Save KazaiMazai/ee40257b81a33eeeaee2baad32e78c77 to your computer and use it in GitHub Desktop.
Custom Segmented Picker with SwiftUI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension HorizontalAlignment { | |
private enum CenterAlignmentID: AlignmentID { | |
static func defaultValue(in dimension: ViewDimensions) -> CGFloat { | |
return dimension[HorizontalAlignment.center] | |
} | |
} | |
static var horizontalCenterAlignment: HorizontalAlignment { | |
HorizontalAlignment(CenterAlignmentID.self) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct SegmentedPicker<Element, Content, Selection>: View | |
where | |
Content: View, | |
Selection: View { | |
public typealias Data = [Element] | |
@State private var frames: [CGRect] | |
@Binding private var selectedIndex: Data.Index? | |
private let data: Data | |
private let selection: () -> Selection | |
private let content: (Data.Element, Bool) -> Content | |
public init(_ data: Data, | |
selectedIndex: Binding<Data.Index?>, | |
@ViewBuilder content: @escaping (Data.Element, Bool) -> Content, | |
@ViewBuilder selection: @escaping () -> Selection) { | |
self.data = data | |
self.content = content | |
self.selection = selection | |
self._selectedIndex = selectedIndex | |
self._frames = State(wrappedValue: Array(repeating: .zero, | |
count: data.count)) | |
} | |
public var body: some View { | |
ZStack(alignment: Alignment(horizontal: .horizontalCenterAlignment, | |
vertical: .center)) { | |
if let selectedIndex = selectedIndex { | |
selection() | |
.frame(width: frames[selectedIndex].width, | |
height: frames[selectedIndex].height) | |
.alignmentGuide(.horizontalCenterAlignment) { dimensions in | |
dimensions[HorizontalAlignment.center] | |
} | |
} | |
HStack(spacing: 0) { | |
ForEach(data.indices, id: \.self) { index in | |
Button(action: { selectedIndex = index }, | |
label: { content(data[index], selectedIndex == index) } | |
) | |
.buttonStyle(PlainButtonStyle()) | |
.background(GeometryReader { proxy in | |
Color.clear.onAppear { frames[index] = proxy.frame(in: .global) } | |
}) | |
.alignmentGuide(.horizontalCenterAlignment, | |
isActive: selectedIndex == index) { dimensions in | |
dimensions[HorizontalAlignment.center] | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct SegmentedPickerExample: View { | |
let titles: [String] | |
@Binding var selectedIndex: Int | |
var body: some View { | |
SegmentedPicker( | |
titles, | |
selectedIndex: Binding( | |
get: { selectedIndex }, | |
set: { selectedIndex = $0 ?? 0 }), | |
content: { item, isSelected in | |
Text(item) | |
.foregroundColor(isSelected ? Color.white : Color.gray ) | |
.padding(.horizontal, 16) | |
.padding(.vertical, 8) | |
}, | |
selection: { | |
Capsule() | |
.fill(Color.gray) | |
}) | |
.animation(.easeInOut(duration: 0.3)) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct SegmentedPickerExample: View { | |
let titles: [String] | |
@Binding var selectedIndex: Int | |
var body: some View { | |
SegmentedPicker( | |
titles, | |
selectedIndex: Binding( | |
get: { selectedIndex }, | |
set: { selectedIndex = $0 ?? 0 }), | |
content: { item, isSelected in | |
Text(item) | |
.foregroundColor(isSelected ? Color.black : Color.gray ) | |
.padding(.horizontal, 16) | |
.padding(.vertical, 8) | |
}, | |
selection: { | |
VStack(spacing: 0) { | |
Spacer() | |
Rectangle() | |
.fill(Color.black) | |
.frame(height: 1) | |
} | |
}) | |
.animation(.easeInOut(duration: 0.3)) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension View { | |
@ViewBuilder | |
@inlinable func alignmentGuide(_ alignment: HorizontalAlignment, | |
isActive: Bool, | |
computeValue: @escaping (ViewDimensions) -> CGFloat) -> some View { | |
if isActive { | |
alignmentGuide(alignment, computeValue: computeValue) | |
} else { | |
self | |
} | |
} | |
@ViewBuilder | |
@inlinable func alignmentGuide(_ alignment: VerticalAlignment, | |
isActive: Bool, | |
computeValue: @escaping (ViewDimensions) -> CGFloat) -> some View { | |
if isActive { | |
alignmentGuide(alignment, computeValue: computeValue) | |
} else { | |
self | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your sharing.