1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-07 12:00:09 +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)
} else {
// Empty cell
VStack { Text("") }.frame(minWidth: 0, maxWidth: .infinity)
VStack { EmptyView() }.frame(minWidth: 0, maxWidth: .infinity)
}
}
}