Set count of unplaced pieces' text color to board line color
This commit is contained in:
parent
e74207af4d
commit
062e8ff079
|
@ -72,8 +72,8 @@ class BoardPainter extends PiecesBasePainter {
|
||||||
}
|
}
|
||||||
|
|
||||||
TextSpan textSpan = TextSpan(
|
TextSpan textSpan = TextSpan(
|
||||||
style:
|
style: TextStyle(
|
||||||
TextStyle(fontSize: 48, color: AppTheme.boardLineColor), // TODO
|
fontSize: 48, color: Color(Config.boardLineColor)), // TODO
|
||||||
text: pieceInHandCountStr);
|
text: pieceInHandCountStr);
|
||||||
|
|
||||||
TextPainter textPainter = TextPainter(
|
TextPainter textPainter = TextPainter(
|
||||||
|
|
Loading…
Reference in New Issue