Is it currently possible to change the text alignment of a DatePicker in SwiftUI 2.0?
DatePicker(selection: $birthDate, in: ...Date().stripTime(), displayedComponents: .date) {
Text("Birthday")
}
This shows Birthday text on the left and the Date picker text right next to it but I would like it on the right side

