mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
536 B
22 lines
536 B
import 'package:flutter/material.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
import 'package:pinball/l10n/l10n.dart';
|
|
|
|
class LandingPage extends StatelessWidget {
|
|
const LandingPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final l10n = context.l10n;
|
|
return Scaffold(
|
|
body: Center(
|
|
child: TextButton(
|
|
onPressed: () =>
|
|
Navigator.of(context).push<void>(PinballGamePage.route()),
|
|
child: Text(l10n.play),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|