flutter: 棋盘下文字改为双字

This commit is contained in:
Calcitem 2020-11-19 01:13:43 +08:00
parent 308702f2cd
commit b75d98b661
1 changed files with 2 additions and 2 deletions

View File

@ -531,7 +531,7 @@ class _BattlePageState extends State<BattlePage> {
padding: EdgeInsets.symmetric(vertical: 2), padding: EdgeInsets.symmetric(vertical: 2),
child: Row(children: <Widget>[ child: Row(children: <Widget>[
Expanded(child: SizedBox()), Expanded(child: SizedBox()),
FlatButton(child: Text('', style: buttonStyle), onPressed: newGame), FlatButton(child: Text('', style: buttonStyle), onPressed: newGame),
Expanded(child: SizedBox()), Expanded(child: SizedBox()),
FlatButton( FlatButton(
child: Text('悔棋', style: buttonStyle), child: Text('悔棋', style: buttonStyle),
@ -542,7 +542,7 @@ class _BattlePageState extends State<BattlePage> {
), ),
Expanded(child: SizedBox()), Expanded(child: SizedBox()),
FlatButton( FlatButton(
child: Text('分析局面', style: buttonStyle), child: Text('分析', style: buttonStyle),
onPressed: _analysising ? null : analysisPosition, onPressed: _analysising ? null : analysisPosition,
), ),
Expanded(child: SizedBox()), Expanded(child: SizedBox()),