|
|
@ -114,14 +114,6 @@ class PinballGameLoadedView extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final isPlaying = context.select(
|
|
|
|
|
|
|
|
(StartGameBloc bloc) => bloc.state.status == StartGameStatus.play,
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
final gameWidgetWidth = MediaQuery.of(context).size.height * 9 / 16;
|
|
|
|
|
|
|
|
final screenWidth = MediaQuery.of(context).size.width;
|
|
|
|
|
|
|
|
final leftMargin = (screenWidth / 2) - (gameWidgetWidth / 1.8);
|
|
|
|
|
|
|
|
final clampedMargin = leftMargin > 0 ? leftMargin : 0.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return StartGameListener(
|
|
|
|
return StartGameListener(
|
|
|
|
child: Stack(
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
@ -141,16 +133,36 @@ class PinballGameLoadedView extends StatelessWidget {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Positioned(
|
|
|
|
const _PositionedGameHud(),
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class _PositionedGameHud extends StatelessWidget {
|
|
|
|
|
|
|
|
const _PositionedGameHud({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
|
|
|
final isPlaying = context.select(
|
|
|
|
|
|
|
|
(StartGameBloc bloc) => bloc.state.status == StartGameStatus.play,
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
final isGameOver = context.select(
|
|
|
|
|
|
|
|
(GameBloc bloc) => bloc.state.status.isGameOver,
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
final gameWidgetWidth = MediaQuery.of(context).size.height * 9 / 16;
|
|
|
|
|
|
|
|
final screenWidth = MediaQuery.of(context).size.width;
|
|
|
|
|
|
|
|
final leftMargin = (screenWidth / 2) - (gameWidgetWidth / 1.8);
|
|
|
|
|
|
|
|
final clampedMargin = leftMargin > 0 ? leftMargin : 0.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Positioned(
|
|
|
|
top: 0,
|
|
|
|
top: 0,
|
|
|
|
left: clampedMargin,
|
|
|
|
left: clampedMargin,
|
|
|
|
child: Visibility(
|
|
|
|
child: Visibility(
|
|
|
|
visible: isPlaying,
|
|
|
|
visible: isPlaying && !isGameOver,
|
|
|
|
child: const GameHud(),
|
|
|
|
child: const GameHud(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|