flutter: Force move list text direction to ltr

This commit is contained in:
Calcitem 2021-06-05 17:35:02 +08:00
parent 2e8f492a00
commit f85942a9bc
1 changed files with 6 additions and 2 deletions

View File

@ -848,8 +848,12 @@ class _GamePageState extends State<GamePage>
fontSize: Config.fontSize + 2.0,
)),
content: SingleChildScrollView(
child:
Text(moveHistoryText, style: AppTheme.moveHistoryTextStyle)),
child: Text(
moveHistoryText,
style: AppTheme.moveHistoryTextStyle,
textDirection: TextDirection.ltr,
),
),
actions: <Widget>[
end > 0
? TextButton(