Extract GameOverHeader, GameOverStats (+ reusable _StatBox), HingeDivider, GameOverActions. game_over_page.dart 338 -> 100 lines. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
36 lines
1.0 KiB
Dart
36 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// Séparateur décoratif (deux traits + trois points) entre les blocs de l'écran game over.
|
|
class HingeDivider extends StatelessWidget {
|
|
const HingeDivider({super.key});
|
|
|
|
static const _darkRed = Color(0xFF9E1B1B);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 24.0),
|
|
child: Row(
|
|
children: [
|
|
Expanded(child: Container(height: 2, color: _darkRed)),
|
|
const SizedBox(width: 8),
|
|
Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: List.generate(
|
|
3,
|
|
(index) => Container(
|
|
width: 8,
|
|
height: 8,
|
|
margin: const EdgeInsets.symmetric(horizontal: 4),
|
|
decoration: const BoxDecoration(color: _darkRed, shape: BoxShape.circle),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Expanded(child: Container(height: 2, color: _darkRed)),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|