scroll to top 처럼원하는 곳으로 스크롤 하는 방법 리스트에서그냥 VStack 에서 List 에서 특정 위치로 스크롤proxy.scrollTo(0, anchor: .top) 이런 식으로 리스트의 특정 index를 id로 설정하면 된다. struct ListScroll: View { var body: some View { ScrollViewReader { proxy in VStack(spacing: 12) { Button("Scroll to 0") { withAnimation { proxy.scrollTo(0, anchor: .top) ..