diff --git a/lib/l10n/app_en.arb b/lib/l10n/app_en.arb index 4a9a9cb..3959433 100644 --- a/lib/l10n/app_en.arb +++ b/lib/l10n/app_en.arb @@ -74,5 +74,8 @@ "userNotEmpty": "Username cannot be empty", "passwordNotEmpty": "Password cannot be empty", "examplePath": "Example: /adguard", - "helperPath": "If you are using a reverse proxy" + "helperPath": "If you are using a reverse proxy", + "aboutApp": "About the application", + "appVersion": "App version", + "createdBy": "Created by" } \ No newline at end of file diff --git a/lib/l10n/app_es.arb b/lib/l10n/app_es.arb index a8827be..7247cf0 100644 --- a/lib/l10n/app_es.arb +++ b/lib/l10n/app_es.arb @@ -74,5 +74,8 @@ "userNotEmpty": "Usuario no puede estar vacío", "passwordNotEmpty": "Contraseña no puede estar vacío", "examplePath": "Ejemplo: /adguard", - "helperPath": "Si estás usando un reverse proxy" + "helperPath": "Si estás usando un reverse proxy", + "aboutApp": "Sobre la aplicación", + "appVersion": "Versión de la app", + "createdBy": "Creado por" } \ No newline at end of file diff --git a/lib/screens/settings/settings.dart b/lib/screens/settings/settings.dart index e9bcab5..0527cdb 100644 --- a/lib/screens/settings/settings.dart +++ b/lib/screens/settings/settings.dart @@ -75,6 +75,16 @@ class Settings extends StatelessWidget { : AppLocalizations.of(context)!.noServerSelected, onTap: navigateServers, ), + const Divider(), + SectionLabel(label: AppLocalizations.of(context)!.aboutApp), + CustomListTile( + label: AppLocalizations.of(context)!.appVersion, + description: appConfigProvider.getAppInfo!.version, + ), + CustomListTile( + label: AppLocalizations.of(context)!.createdBy, + description: "JGeek00", + ), ], ); }