Dont show results indicator while loading on iPad

This commit is contained in:
Jackson Harper
2024-03-08 13:26:49 +08:00
parent 2ce4fa3f48
commit bd4e405984

View File

@ -150,13 +150,15 @@ struct EmptyState: View {
return AnyView(Group {
Spacer()
VStack(alignment: .center, spacing: 20) {
Text("No results found for this query")
.font(Font.system(size: 18, weight: .bold))
if viewModel.showLoadingBar == .none {
VStack(alignment: .center, spacing: 20) {
Text("No results found for this query")
.font(Font.system(size: 18, weight: .bold))
}
.frame(minHeight: 400)
.frame(maxWidth: .infinity)
.padding()
}
.frame(minHeight: 400)
.frame(maxWidth: .infinity)
.padding()
Spacer()
})