Fixed Location & Storage issues
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:rogapp/widgets/GameState/Colors.dart';
|
||||
|
||||
class GameStatusIndicator extends StatelessWidget {
|
||||
@ -15,7 +16,7 @@ class GameStatusIndicator extends StatelessWidget {
|
||||
IconData iconData =
|
||||
gameStarted ? Icons.stop_circle : Icons.play_circle_filled;
|
||||
// Text to show based on the game status
|
||||
String text = gameStarted ? 'ゲーム中' : 'ゲーム前';
|
||||
String text = gameStarted ? 'in_game'.tr : 'start_game'.tr;
|
||||
|
||||
// Layout for minimized view
|
||||
if (minimized) {
|
||||
|
||||
Reference in New Issue
Block a user