ProgressView in SwiftUI
Progress view in SwiftUI is used to indicate the “progress” toward a task completion 😃
Progress view comes in two flavors 😋 there is a version which show indeterminate progress as shown below:
struct ProgressViewExample: View {
var body: some View {
ProgressView("Loading... Please wait.")
}
}