Added about

This commit is contained in:
Juan Gilsanz Polo 2022-09-28 01:48:21 +02:00
parent 390a509380
commit f6a35ebf04
3 changed files with 18 additions and 2 deletions

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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",
),
],
);
}