Remove NavigationView so iPad aligns to top of sheet

Also animate the miniplayer away so its not visible on ipad
when open in landscape mode.
This commit is contained in:
Jackson Harper 2022-10-21 12:23:30 +08:00
parent 578b9c6790
commit 663ccc1dc1

View file

@ -148,10 +148,10 @@
.onTapGesture {
withAnimation(.easeIn(duration: 0.08)) { expanded = true }
}.sheet(isPresented: $expanded) {
NavigationView {
ExpandedPlayer()
}
ExpandedPlayer()
}
.offset(y: expanded ? 88 : 0)
.opacity(expanded ? 0.0 : 1.0)
}
public var body: some View {