Refresh views on entering foreground

This commit is contained in:
Arkadiusz Fal
2022-08-28 20:00:43 +02:00
parent 0f7d826a3e
commit 44600831a6
5 changed files with 27 additions and 0 deletions

View File

@@ -158,6 +158,12 @@ struct PlaylistsView: View {
#if os(iOS)
.navigationBarTitleDisplayMode(RefreshControl.navigationBarTitleDisplayMode)
#endif
#if !os(macOS)
.onReceive(NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
model.load()
resource?.loadIfNeeded()
}
#endif
}
#if os(tvOS)