diff --git a/lib/presentation/views/active_game_view.dart b/lib/presentation/views/active_game_view.dart index eeae49d..6bbf6bc 100644 --- a/lib/presentation/views/active_game_view.dart +++ b/lib/presentation/views/active_game_view.dart @@ -138,7 +138,7 @@ class _ActiveGameViewState extends State { )))), CupertinoListTile( title: Text( - 'Übersicht', + AppLocalizations.of(context).table, ), backgroundColorActivated: CustomTheme.backgroundColor, diff --git a/lib/presentation/views/point_overview_view.dart b/lib/presentation/views/point_overview_view.dart index fe6373a..31ea295 100644 --- a/lib/presentation/views/point_overview_view.dart +++ b/lib/presentation/views/point_overview_view.dart @@ -17,9 +17,8 @@ class _PointOverviewViewState extends State { @override Widget build(BuildContext context) { return CupertinoPageScaffold( - resizeToAvoidBottomInset: true, navigationBar: CupertinoNavigationBar( - middle: const Text('Punkte-Übersicht'), + middle: Text(AppLocalizations.of(context).table), previousPageTitle: AppLocalizations.of(context).back, ), child: SingleChildScrollView( diff --git a/pubspec.yaml b/pubspec.yaml index 817731d..e800775 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: cabo_counter description: "Mobile app for the card game Cabo" publish_to: 'none' -version: 0.4.7+515 +version: 0.4.7+519 environment: sdk: ^3.5.4