1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-13 14:30:06 +02:00

️ Use EmptyView for empty state

This commit is contained in:
2022-06-12 13:37:27 +02:00
parent d821968a49
commit ccb0d96453

View File

@@ -56,7 +56,7 @@ struct ServicesView: View {
}.frame(minWidth: 0, maxWidth: .infinity) }.frame(minWidth: 0, maxWidth: .infinity)
} else { } else {
// Empty cell // Empty cell
VStack { Text("") }.frame(minWidth: 0, maxWidth: .infinity) VStack { EmptyView() }.frame(minWidth: 0, maxWidth: .infinity)
} }
} }
} }