Skip to content

Commit

Permalink
feat: app: add game log
Browse files Browse the repository at this point in the history
Resolves #62
  • Loading branch information
mytja committed Dec 31, 2024
1 parent 09f3d27 commit 5c6e545
Show file tree
Hide file tree
Showing 15 changed files with 1,647 additions and 80 deletions.
1 change: 1 addition & 0 deletions tarok/lib/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ bool COUNTERCLOCKWISE_GAME = false;
bool POINTS_TOOLTIP = false;
bool SHOW_EVALUATION = true;
bool SHOW_MOST_POWERFUL_CARD = false;
bool SAVE_GAME_LOGS = false;
String THEME = "";
Locale LOCALE = Get.deviceLocale ?? const Locale("sl", "SI");

Expand Down
4 changes: 2 additions & 2 deletions tarok/lib/game/game.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ class Game extends StatelessWidget {
width: fullWidth / 5.5,
child: DefaultTabController(
length: controller.replay
? 7 -
? 9 -
(DEVELOPER_MODE ? 0 : 1) -
(controller.bots ? 2 : 0)
: 6 -
: 7 -
(DEVELOPER_MODE ? 0 : 1) -
(controller.bots ? 2 : 0),
child: Scaffold(
Expand Down
Loading

0 comments on commit 5c6e545

Please sign in to comment.