Refactoring

This commit is contained in:
Felix Kirchner
2025-05-03 16:09:04 +02:00
parent 9e44138851
commit ca19067152
7 changed files with 13 additions and 16 deletions

View File

@@ -39,7 +39,7 @@ class _SettingsViewState extends State<SettingsView> {
padding: const EdgeInsets.fromLTRB(10, 10, 0, 0),
child: Text(
'Punkte',
style: CustomTheme.createGameTitle,
style: CustomTheme.rowTitle,
),
),
Padding(
@@ -100,7 +100,7 @@ class _SettingsViewState extends State<SettingsView> {
padding: const EdgeInsets.fromLTRB(10, 10, 0, 0),
child: Text(
'Spieldaten',
style: CustomTheme.createGameTitle,
style: CustomTheme.rowTitle,
),
),
Padding(
@@ -201,7 +201,7 @@ class _SettingsViewState extends State<SettingsView> {
builder: (context, snapshot) {
if (snapshot.hasData) {
return Text(
'Alpha ${snapshot.data!.version} '
'${Globals.appDevPhase} ${snapshot.data!.version} '
'(Build ${snapshot.data!.buildNumber})',
textAlign: TextAlign.center,
);