This commit is contained in:
Arkadiusz Fal 2022-08-15 14:27:33 +02:00
parent 560d7c4b9a
commit ad715fa367

View File

@ -19,15 +19,15 @@ struct AddToPlaylistView: View {
var body: some View { var body: some View {
Group { Group {
VStack { VStack {
header
Spacer()
if model.isEmpty { if model.isEmpty {
emptyPlaylistsMessage emptyPlaylistsMessage
} else { } else {
header
Spacer()
form form
Spacer()
footer
} }
Spacer()
footer
} }
.frame(maxWidth: 1000, maxHeight: height) .frame(maxWidth: 1000, maxHeight: height)
} }