removed unneccessary null assertion operators
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m3s
Pull Request Pipeline / lint (pull_request) Successful in 2m6s

This commit is contained in:
2026-01-02 21:16:13 +01:00
parent a038c22ba6
commit 678ab90af3
7 changed files with 17 additions and 21 deletions

View File

@@ -87,9 +87,7 @@ class _StatisticsViewState extends State<StatisticsView> {
SizedBox(height: constraints.maxHeight * 0.02),
StatisticsTile(
icon: Icons.casino,
title: AppLocalizations.of(
context,
)!.amount_of_matches,
title: AppLocalizations.of(context).amount_of_matches,
width: constraints.maxWidth * 0.95,
values: matchCounts,
itemCount: 10,
@@ -102,7 +100,7 @@ class _StatisticsViewState extends State<StatisticsView> {
title: AppLocalizations.of(context).info,
message: AppLocalizations.of(
context,
)!.no_statistics_available,
).no_statistics_available,
),
),
SizedBox(height: MediaQuery.paddingOf(context).bottom),