Your First Flutter Flame Game

Mar 6 2024 · Dart 3, Flutter 3.10.1, Android Studio 2021.3.1 or higher, Visual Studo Code 1.7.4 or higher

Part 3: Collision Detection & Overlays

19. Challenge: Create a Game Over Overlay

Episode complete

About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 18. Make a Game Menu

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 19. Challenge: Create a Game Over Overlay

Hint: Use isGameOver from GameManager to check for when the game has ended.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

Use what you’ve learned to create a GameOver overlay.

Solution

GameOver

Let’s start with a basic stateless widget.

class GameOver extends StatelessWidget {
}
  static const String overlayName = 'GameOver';

  // Reference to parent game.
  final MeteormaniaGame game;
  const GameOver({super.key, required this.game});
@override
Widget build(BuildContext context) {
  return Material(
    color: Colors.transparent,
    child: Center(
      child: Container(
        padding: const EdgeInsets.all(16.0),
        height: 250,
        decoration: BoxDecoration(
          color: const Color.fromRGBO(255, 255, 255, 0.15),
          border: Border.all(
            color: Colors.white,
            width: 4,
          ),
          borderRadius: const BorderRadius.all(
            Radius.circular(20),
          ),
        ),
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [],
        ),
      ),
    ),
  );
}
const Text(
  'Game Over',
  style: TextStyle(
    fontFamily: 'PressStart2P',
    color: Colors.white,
    fontSize: 24,
  ),
),
        const SizedBox(height: 24),
        Text(
          'Score: ${game.manager.points} pts',
          style: const TextStyle(
            fontFamily: 'PressStart2P',
            color: Colors.white,
            fontSize: 16,
          ),
        ),
const SizedBox(height: 32),
SizedBox(
  width: 200,
  height: 52,
  child: OutlinedButton(
    onPressed: () {
    },
    style: OutlinedButton.styleFrom(
      foregroundColor: Colors.white,
      side: const BorderSide(width: 3.0, color: Colors.white),
    ),
    child: const Text(
      'Play again',
      style: TextStyle(
        fontSize: 16,
        fontFamily: 'PressStart2P',
      ),
    ),
  ),
),
game.overlays.remove(overlayName);
game.reset();

MeteormaniaGame

Since reset does not currently exist, let’s go ahead and add it to MeteormaniaGame.

void reset() {
}
manager.reset();
initializeGame();
overlays.add(GameOver.overlayName);

Main

As the last step, add the new overlay to GameWidget in main.dart

GameOver.overlayName: (_, game) => GameOver(game: game),