I am creating tableview kind of UI using List in SwiftUI. I am trying to achieve below things but couldn’t found solution
- How to remove leading spacing in List (so that row separator will expand full width)?
- How to disable bouncing effect on scroll?
Thank you for help.
var names = ["Apple", "Ball", "Cat", "Dog","Egg", "Fox"]
List(names, id:\.self) {
Text($0)
}