Is there a way to simply change the UIPopoverView background color (including its arrow) on iOS8?
(I did read a couple of articles on customizing \"UIPopove
SwiftUI : Xcode 11.5
Add the .background modifier with the color and add .edgesIgnoringSafeArea modifier.
.background
.edgesIgnoringSafeArea
.popover(isPresented: self.$vm.presentMenu, content: { self.menuView .background(Color.bgGray.edgesIgnoringSafeArea(.all)) })