flutter: Force move list text direction to ltr
This commit is contained in:
parent
2e8f492a00
commit
f85942a9bc
|
@ -848,8 +848,12 @@ class _GamePageState extends State<GamePage>
|
||||||
fontSize: Config.fontSize + 2.0,
|
fontSize: Config.fontSize + 2.0,
|
||||||
)),
|
)),
|
||||||
content: SingleChildScrollView(
|
content: SingleChildScrollView(
|
||||||
child:
|
child: Text(
|
||||||
Text(moveHistoryText, style: AppTheme.moveHistoryTextStyle)),
|
moveHistoryText,
|
||||||
|
style: AppTheme.moveHistoryTextStyle,
|
||||||
|
textDirection: TextDirection.ltr,
|
||||||
|
),
|
||||||
|
),
|
||||||
actions: <Widget>[
|
actions: <Widget>[
|
||||||
end > 0
|
end > 0
|
||||||
? TextButton(
|
? TextButton(
|
||||||
|
|
Loading…
Reference in New Issue