22 Oct 2020 . Min ReadImplementing Reverse Scrolling in SwiftUI
SwiftUI makes designing user-interface elements like a breeze. It makes it so easy that we can just think about the features without worrying about the details.
In this post, we will look at how we can build a horizontal/vertical scroll list that will start from the opposite edge. For horizontal axis items should start from the right trailing edge and from bottom edge in vertical axis.
struct ReversedScrollView: View {
var body: some View {
}
}
Here we define our view struc