Post

Replies

Boosts

Views

Activity

Reply to ScrollViewReader's scrollTo may be broken on iOS 15
For me setting the background as a clear colour with id solved the issue: ScrollViewReader { scrollViewProxy in     ScrollView {       LazyVStack {         ForEach(viewModel.items) { item in           ItemView(item)             .background(Color.clear.id(item.id))         }       }     }   }
Aug ’22