Add contentunavailable view to settings

This commit is contained in:
Garth Vander Houwen 2023-09-08 06:44:04 -07:00
parent 3658aacbe1
commit 1aa1ca7f4e

View file

@ -289,8 +289,12 @@ struct Settings: View {
MeshtasticLogo()
)
}
detail: {
Text("select.menu.item")
}
detail: {
if #available (iOS 17, *) {
ContentUnavailableView("select.menu.item", systemImage: "gear")
} else {
Text("select.menu.item")
}
}
}
}