@joey_ I was having a similar issue and you'll need to add this to your root app file (replace .mint by your color)
@main
struct MyApp: App {
init(){
UIView.appearance(whenContainedInInstancesOf: [TipUIPopoverViewController.self]).tintColor = UIColor(.mint)
}
var body: some Scene {
WindowGroup {
// content view...
}
}
}
Post
Replies
Boosts
Views
Activity
Running into the same issue. Simulator 14.2 seems impacted too
A list of swipeable cells feels a pretty common design pattern in 2022. I hope we’ll be able to have a way to implement this more easily in SwiftUI soon :)
+1 I can repo this issue too