Skip to content

Commit

Permalink
increase move list size in landscape
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-anders committed Nov 1, 2024
1 parent b0a67da commit 23be8c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/widgets/board_table.dart
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class _BoardTableState extends ConsumerState<BoardTable> {
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
Flexible(child: widget.topTable),
widget.topTable,
if (!widget.zenMode && slicedMoves != null)
Expanded(
child: Padding(
Expand All @@ -286,7 +286,7 @@ class _BoardTableState extends ConsumerState<BoardTable> {
child: SizedBox(height: 40),
),
),
Flexible(child: widget.bottomTable),
widget.bottomTable,
],
),
),
Expand Down

0 comments on commit 23be8c3

Please sign in to comment.