We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a776086 commit 7449d33Copy full SHA for 7449d33
Sources/OpenTDS/Component/ScrollView/ScrollView.swift
@@ -42,6 +42,10 @@ public struct TossScrollView<C: View>: View {
42
public var body: some View {
43
VStack {
44
ZStack {
45
+ Text(title)
46
+ .font(.system(size: 17, weight: .medium))
47
+ .opacity(shrink ? 1 : 0)
48
+ .padding(.vertical, 6)
49
HStack(spacing: 26) {
50
if backButtonExists {
51
Button(action: {
@@ -65,10 +69,6 @@ public struct TossScrollView<C: View>: View {
65
69
}
66
70
67
71
.padding(.horizontal, 18)
68
- Text(title)
- .font(.system(size: 17, weight: .medium))
- .opacity(shrink ? 1 : 0)
- .padding(.vertical, 6)
72
73
.frame(maxWidth: .infinity)
74
GeometryReader { outsideProxy in
0 commit comments