tangled
alpha
login
or
join now
kepelet.com
/
flo
3
fork
atom
an open source Navidrome client written in Swift — https://dub.sh/getflo
dub.sh/getflo
navidrome-client
3
fork
atom
overview
issues
1
pulls
pipelines
fix: move the attributes to the right place
rizaldy.club
1 year ago
2648d8c5
eacb447a
+2
-2
1 changed file
expand all
collapse all
unified
split
flo
ContentView.swift
+2
-2
flo/ContentView.swift
reviewed
···
63
63
ZStack {
64
64
if playerViewModel.hasNowPlaying() && !playerViewModel.shouldHidePlayer {
65
65
PlayerView(isExpanded: $isPlayerExpanded, viewModel: playerViewModel)
66
66
+
.offset(y: isPlayerExpanded ? 0 : UIScreen.main.bounds.height)
67
67
+
.animation(.spring(duration: 0.2), value: isPlayerExpanded)
66
68
}
67
69
}
68
68
-
.offset(y: isPlayerExpanded ? 0 : UIScreen.main.bounds.height)
69
69
-
.animation(.spring(duration: 0.2), value: isPlayerExpanded)
70
70
71
71
VStack {
72
72
Spacer()