Post

Replies

Boosts

Views

Activity

Reply to how to add this button side by side with Tab in Vision OS
mmm couldn't you try doing something like that? obviously mine is just an idea, certainly not the best solution ^_^ .ornament(attachmentAnchor: .scene(.leading), ornament: { VStack { VStack { Button { } label: { Image(systemName: "circle") } Button { } label: { Image(systemName: "circle") } Button { } label: { Image(systemName: "circle") } } .padding() .glassBackgroundEffect() Spacer(minLength: 100.0) VStack { Button { } label: { Image(systemName: "circle") } } .padding() .glassBackgroundEffect() } })
Apr ’24
Reply to Check ApplicationState from NEAppPushProvider
Thanks for your answer, I try to explain myself better. I want to understand how to manage the coexistence of online and offline notifications. Assuming (for example) that my network (identified by my SSID) has connectivity, how should I prevent both online and offline notifications from activating? (it's a somewhat forced example, but I need it to better understand the problem). I hope I have clarified my doubt.
Nov ’20