SwiftUI Refreshable With Custom Loading View

1.7k Views Asked by At

I have a refreshable Scroll View using .refreshable and it works exactly how I need it to except for the loading view. How can I hide or replace that loading wheel?

    .refreshable {
        Task {
           // Reload
        }
    }

enter image description here

0

There are 0 best solutions below