skip to Main Content

Hide text after scrolling (SwiftUI) – Ios swift

How can I hide my arrow text after ScrollView has scrolled? struct Skroll: View { var body: some View { VStack(alignment: .trailing) { Text("<-") .font(.system(size: 25).bold()) .kerning(-3) ScrollView(.horizontal, showsIndicators: false) { HStack { Rectangle() .frame(width: 200, height: 300) .cornerRadius(20) Rectangle()…

VIEW QUESTION
Back To Top
Search