Created
February 7, 2021 07:09
-
-
Save prafullakumar/d1c91f74726d4a30ee74b83cba75242a to your computer and use it in GitHub Desktop.
Demo : ScrollableTab using swiftUI
This file contains hidden or 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
import SwiftUI | |
struct ContentView: View { | |
@State private var selection = 1 //selected page | |
let dataModel = ["Forums", "Learn", "Careers", "Store", "About"] | |
var body: some View { | |
NavigationView { | |
VStack { | |
//ScrollableTabView | |
ScrollView(.horizontal, showsIndicators: false, content: { | |
ScrollViewReader { scrollReader in | |
ScrollableTabView(activeIdx: $selection,dataSet: dataModel) | |
.padding(.top).onChange(of: selection, perform: { value in | |
withAnimation{ | |
scrollReader.scrollTo(value, anchor: .center) | |
} | |
}) | |
} | |
}) | |
.background(Color(UIColor.secondarySystemFill)) | |
//Page View | |
LazyHStack { | |
PageView(selection: $selection, dataModel: dataModel) | |
} | |
} | |
.navigationBarTitle("Demo", displayMode: .inline) | |
}.onChange(of: selection, perform: { value in | |
//update tab | |
}) | |
} | |
} | |
//page view | |
struct PageView: View { | |
@Binding var selection: Int | |
let dataModel: [String] | |
var body: some View { | |
TabView(selection:$selection) { | |
ForEach(0..<dataModel.count) { i in | |
VStack { | |
HStack { | |
Text(dataModel[i]) | |
.foregroundColor(Color.primary) | |
.padding() | |
Spacer() | |
} | |
Spacer() | |
}.tag(i) | |
} | |
} | |
.frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height - 170) | |
//give padding nav height + scrollable Tab | |
.tabViewStyle(PageTabViewStyle.init(indexDisplayMode: .never)) | |
} | |
} | |
//Tab bar | |
extension HorizontalAlignment { | |
private enum UnderlineLeading: AlignmentID { | |
static func defaultValue(in d: ViewDimensions) -> CGFloat { | |
return d[.leading] | |
} | |
} | |
static let underlineLeading = HorizontalAlignment(UnderlineLeading.self) | |
} | |
struct WidthPreferenceKey: PreferenceKey { | |
static var defaultValue = CGFloat(0) | |
static func reduce(value: inout CGFloat, nextValue: () -> CGFloat) { | |
value = nextValue() | |
} | |
typealias Value = CGFloat | |
} | |
struct ScrollableTabView : View { | |
@Binding var activeIdx: Int | |
@State private var w: [CGFloat] | |
private let dataSet: [String] | |
init(activeIdx: Binding<Int>, dataSet: [String]) { | |
self._activeIdx = activeIdx | |
self.dataSet = dataSet | |
_w = State.init(initialValue: [CGFloat](repeating: 0, count: dataSet.count)) | |
} | |
var body: some View { | |
VStack(alignment: .underlineLeading) { | |
HStack { | |
ForEach(0..<dataSet.count) { i in | |
Text(dataSet[i]) | |
.font(Font.title2.bold()) | |
.modifier(ScrollableTabViewModifier(activeIdx: $activeIdx, idx: i)) | |
.background(TextGeometry()) | |
.onPreferenceChange(WidthPreferenceKey.self, perform: { self.w[i] = $0 }) | |
.id(i) | |
Spacer().frame(width: 20) | |
} | |
} | |
.padding(.horizontal, 5) | |
Rectangle() | |
.alignmentGuide(.underlineLeading) { d in d[.leading] } | |
.frame(width: w[activeIdx], height: 4) | |
.animation(.linear) | |
} | |
} | |
} | |
struct TextGeometry: View { | |
var body: some View { | |
GeometryReader { geometry in | |
return Rectangle().fill(Color.clear).preference(key: WidthPreferenceKey.self, value: geometry.size.width) | |
} | |
} | |
} | |
struct ScrollableTabViewModifier: ViewModifier { | |
@Binding var activeIdx: Int | |
let idx: Int | |
func body(content: Content) -> some View { | |
Group { | |
if activeIdx == idx { | |
content.alignmentGuide(.underlineLeading) { d in | |
return d[.leading] | |
}.onTapGesture { | |
withAnimation{ | |
self.activeIdx = self.idx | |
} | |
} | |
} else { | |
content.onTapGesture { | |
withAnimation{ | |
self.activeIdx = self.idx | |
} | |
} | |
} | |
} | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment