Text alignment in an actionsheet

.actionSheet(isPresented: $showingExampleSentences) {
  ActionSheet(title: Text("Example Sentence"), message: Text(sentence_foreign_language + "\n" + .sentence_english), buttons: [.default(Text("OK"))]);
  }


I've got a SwiftUI action sheet where it displays two lines of text, but by default they are centre-aligned. Is there a way to make it aligned to the top-left?

Could you apply this :

documentsActionButton.setValue(CATextLayerAlignmentMode.left, forKey: "titleTextAlignment")

https://stackoverflow.com/questions/47370823/uialertaction-button-text-alignment-left

Text alignment in an actionsheet
 
 
Q