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 {
Group {
VStack {
header
Spacer()
if model.isEmpty {
emptyPlaylistsMessage
} else {
header
Spacer()
form
Spacer()
footer
}
Spacer()
footer
}
.frame(maxWidth: 1000, maxHeight: height)
}