mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add empty subscriptions list message
This commit is contained in:
parent
8fcbfbbd2e
commit
903e58b3c5
1 changed files with 6 additions and 0 deletions
|
|
@ -64,6 +64,12 @@ struct SubscriptionsView: View {
|
|||
)
|
||||
.buttonStyle(RoundedRectButtonStyle())
|
||||
}
|
||||
} else if viewModel.subscriptions.isEmpty {
|
||||
VStack(alignment: .center) {
|
||||
Spacer()
|
||||
Text("You have no current subscriptions.")
|
||||
Spacer()
|
||||
}
|
||||
} else {
|
||||
Group {
|
||||
#if os(iOS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue