Modifying font weight of DatePicker in Swift UI

As the title suggests I would like to change the font weight of the DatePicker from regular to bold, is this possible? My code is below

DatePicker( "", selection: $selectedDate, in: dateRange(), displayedComponents: .date ) .datePickerStyle(.graphical) .labelsHidden() .environment(.timeZone, calendar.timeZone) .fontWeight(.bold) // I want this affect on the DatePicker

Any help is appreciated, thank you!

Modifying font weight of DatePicker in Swift UI
 
 
Q