This project shows Global Tint bug in SwiftUI.
Uses Global AccentColor described in this article:
However action sheets behave oddly.
struct ContentView: View {
@State var isPresented: Bool = false
var body: some View {
Button("Present Sheet"){
isPresented.toggle()
}
.actionSheet(isPresented: $isPresented){
ActionSheet(title: Text("title"), buttons: [
.default(Text("item 1")),
.default(Text("item 2")),
.cancel()
])
}
}
}