Skip to content

Commit

Permalink
feat: make loader bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
angristan committed Jul 20, 2021
1 parent a855c14 commit 94642c3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion firstfm/Views/ArtistView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ struct ArtistView: View {

// Show loader above the rest of the ZStack
if model.isLoading {
ProgressView()
ProgressView().scaleEffect(2)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion firstfm/Views/ChartListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ struct ChartList: View {
}
// Show loader above the rest of the ZStack
if charts.isLoading {
ProgressView()
ProgressView().scaleEffect(2)
}
}

Expand Down
2 changes: 1 addition & 1 deletion firstfm/Views/Profile/FriendsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct FriendsView: View {
}

if vm.isFriendsLoading {
ProgressView()
ProgressView().scaleEffect(2)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion firstfm/Views/Profile/ProfileView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct ProfileView: View {
}
// Show loader above the rest of the ZStack
if profile.isLoading {
ProgressView()
ProgressView().scaleEffect(2)
}
}.onAppear {
if let username = storedUsername {
Expand Down
2 changes: 1 addition & 1 deletion firstfm/Views/Scrobbles/ScrobblesView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct Scrobbles: View {
}
// Show loader above the rest of the ZStack
if vm.isLoading {
ProgressView()
ProgressView().scaleEffect(2)
}
}

Expand Down
2 changes: 1 addition & 1 deletion firstfm/Views/Trends/TopCountryView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct TopCountryView: View {

// Show loader above the rest of the ZStack
if vm.isLoading {
ProgressView()
ProgressView().scaleEffect(2)
}
}
} else {
Expand Down

0 comments on commit 94642c3

Please sign in to comment.