Post

Replies

Boosts

Views

Activity

Reply to TipKit Image asset tint color
@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... } } }
Oct ’23