SwiftUI TextField clips text at the bottom

I have a TextField in my SwiftUI app for macOS, created as below:

TextField("Enter text here", text: $enteredText)                        
	.font(.title)

It works fine for Latin text. However, for scripts with low descends, like Balinese, Khmer etc, the bottom parts gets clipped:

Is there modifiers I can use to prevent this clipping?

SwiftUI TextField clips text at the bottom
 
 
Q