Added new Buttons and new GraphView

This commit is contained in:
2025-06-27 11:00:37 +02:00
parent 4d7361fc74
commit 7710646cd0
8 changed files with 85 additions and 6 deletions

22
lib/views/graph_view.dart Normal file
View File

@@ -0,0 +1,22 @@
import 'package:cabo_counter/l10n/app_localizations.dart';
import 'package:flutter/cupertino.dart';
class GraphView extends StatefulWidget {
const GraphView({super.key});
@override
State<GraphView> createState() => _GraphViewState();
}
class _GraphViewState extends State<GraphView> {
@override
Widget build(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text(AppLocalizations.of(context).game_statistics),
previousPageTitle: AppLocalizations.of(context).back,
),
child: const Center(child: Text('GraphView')),
);
}
}