example
Post
Replies
Boosts
Views
Activity
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()
}
})
thanks for your reply
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.