I have a simple view with a list of custom views. The list appears after loading from an API with the following code:
List(viewModel.repositories) { repository in
SetupRepositoryView(repository)
}
As I scroll, the scrollbar resizes. I think this is something to do with SwiftUI lazily loading the content. Is there any way to refresh the scrollbar view at the start.
