Questions tagged [text-direction]

For questions related to handling the direction of text. This usually means left-to-right (LTR) text like English or right-to-left (RTL) text like Arabic. However, it could also cover vertical text like traditional Mongolian.

9 questions
2
votes
0 answers

Arabic words aren't displayed properly in DrRacket

I work on Arabic scripted texts in DrRacket but the characters stand seprate, they have to be attached to each other. The second problem is that DrRacket reads them left-to-right like in Latin script. When I am posting here in order to show how they…
Sandy
  • 21
  • 2
2
votes
1 answer

Changing latex table text direction?

I want to change the table generated by the following code so that the first column looks like the figure below by 1- changing the text direction in the first column. I made some changes regarding this post but still have a problem. Desired…
Abbas
  • 807
  • 7
  • 14
2
votes
1 answer

Bug in Flutter, while editing text in RTL languages

There is a bug in Flutter while using RTL (Right To Left) TextField. If we click on (A), the cursor will stop at B, one before the end of the text, and we can't edit the last character! I created this issue and I hope Flutter people see it and fix…
AVEbrahimi
  • 17,993
  • 23
  • 107
  • 210
1
vote
0 answers

Changing text direction on HTML / Writing Right-to-Left on Thinkific (HTML)

I'm uploading a course in Arabic (Right-to-Left language) onto Thinkific. The problem: Thinkific does not support Right-to-Left languages, and so in the final course, punctuation appears at the beginning of the sentence. Numbers and bullet points…
1
vote
0 answers

different text direction for different lines of a textfield in flutter

I'm making a chat app with flutter Can anyone help me to use different text direction on each line of textfield or suggest some library for rtl and ltr? I tried to detect text direction in textfield by intl package it works just for one line of text…
Mhwmd
  • 71
  • 8
1
vote
1 answer

Flutter error: RenderFlex with multiple children has a null textDirection

I'm testing a widget that includes the following code (adapted from here): await tester.pumpWidget( MediaQuery( data: const MediaQueryData(devicePixelRatio: 1.0), child: FocusScope( node: focusScopeNode, autofocus: true, …
Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393
0
votes
1 answer

How can I write Persian words Left-to-Right?

I need to write Persian words in left to right mode for write Math formula in textarea html css but I cant get it working with direction:ltr; or other solutions to fixed it with direction. I tested align-text, direction, dir Attribute and another…
Sajjad Arash
  • 91
  • 2
  • 6
0
votes
1 answer

How to Make Page Text Go From Right to Left?

I am trying to change a template direction from ltr into rtl. I added dir="rtl" code to and the divs but nothing changes I also tried to do it in css by adding direction: rtl; to body class and other classes but still not working! { direction:…
-3
votes
0 answers

how can I set textAlign for each line separately in flutter

How do I individually set text alignment for each line within a Flutter TextField widget, considering different line lengths and maintaining alignment like this and I try to do this with textEditingController and doing check each character to we…