Right-to-Left text-direction in PySimpleGUI

Viewed 523

Does PySimpleGUI python library support RTL alignment?

I want to align Arabic text from right-to-left:

enter image description here

Code:

sg.Text("احب الطعام", font='12', size=(15, 1), background_color='#81a5b3')
1 Answers

**just add to your sg.text() element.

justification="right"**

Related