Parameters
ArabicJustifiedText
For simple text with single style.
| Parameter | Type | Default | Description |
|---|---|---|---|
text |
String |
required | The text to display |
style |
TextStyle? |
null |
Text style (inherits from theme if null) |
maxLines |
int? |
null |
Maximum number of lines |
overflow |
TextOverflow? |
null |
How to handle text overflow |
textDirection |
TextDirection |
TextDirection.rtl |
Text direction (RTL/LTR) |
textAlign |
TextAlign |
TextAlign.justify |
Text alignment |
enableKashida |
bool |
true |
Enable/disable Kashida justification |
excludedWords |
List<String>? |
null |
Words to exclude from Kashida |
ArabicJustifiedRichText
For complex text with multiple styles.
| Parameter | Type | Default | Description |
|---|---|---|---|
textSpan |
InlineSpan |
required | The text span to display |
maxLines |
int? |
null |
Maximum number of lines |
overflow |
TextOverflow? |
null |
How to handle text overflow |
textDirection |
TextDirection |
TextDirection.rtl |
Text direction (RTL/LTR) |
textAlign |
TextAlign |
TextAlign.justify |
Text alignment |
enableKashida |
bool |
true |
Enable/disable Kashida justification |
excludedWords |
List<String>? |
null |
Words to exclude from Kashida |