added hub module

This commit is contained in:
2026-01-23 14:52:08 +01:00
parent 337a00e98f
commit 60a49060a1
50 changed files with 2558 additions and 1191 deletions

View File

@@ -3,43 +3,43 @@
"packages": [
{
"name": "characters",
"rootUri": "file:///Users/juliandalcalaf/.pub-cache/hosted/pub.dev/characters-1.4.0",
"rootUri": "file:///C:/Users/Aitor%20Arana/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.4.0",
"packageUri": "lib/",
"languageVersion": "3.4"
},
{
"name": "collection",
"rootUri": "file:///Users/juliandalcalaf/.pub-cache/hosted/pub.dev/collection-1.19.1",
"rootUri": "file:///C:/Users/Aitor%20Arana/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.19.1",
"packageUri": "lib/",
"languageVersion": "3.4"
},
{
"name": "flutter",
"rootUri": "file:///Users/juliandalcalaf/Development/flutter/packages/flutter",
"rootUri": "file:///C:/Program%20Files/Flutter/packages/flutter",
"packageUri": "lib/",
"languageVersion": "3.8"
},
{
"name": "material_color_utilities",
"rootUri": "file:///Users/juliandalcalaf/.pub-cache/hosted/pub.dev/material_color_utilities-0.11.1",
"rootUri": "file:///C:/Users/Aitor%20Arana/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.11.1",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "meta",
"rootUri": "file:///Users/juliandalcalaf/.pub-cache/hosted/pub.dev/meta-1.16.0",
"rootUri": "file:///C:/Users/Aitor%20Arana/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.16.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "sky_engine",
"rootUri": "file:///Users/juliandalcalaf/Development/flutter/bin/cache/pkg/sky_engine",
"rootUri": "file:///C:/Program%20Files/Flutter/bin/cache/pkg/sky_engine",
"packageUri": "lib/",
"languageVersion": "3.8"
},
{
"name": "vector_math",
"rootUri": "file:///Users/juliandalcalaf/.pub-cache/hosted/pub.dev/vector_math-2.2.0",
"rootUri": "file:///C:/Users/Aitor%20Arana/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.2.0",
"packageUri": "lib/",
"languageVersion": "3.1"
},
@@ -52,7 +52,7 @@
],
"generator": "pub",
"generatorVersion": "3.9.2",
"flutterRoot": "file:///Users/juliandalcalaf/Development/flutter",
"flutterVersion": "3.35.7",
"pubCache": "file:///Users/juliandalcalaf/.pub-cache"
"flutterRoot": "file:///C:/Program%20Files/Flutter",
"flutterVersion": "3.35.6",
"pubCache": "file:///C:/Users/Aitor%20Arana/AppData/Local/Pub/Cache"
}

View File

@@ -1 +1 @@
3.35.7
3.35.6

View File

@@ -1,5 +1,6 @@
class AppRoutes {
static const splash = '/splash';
static const hub = '/hub';
static const login = '/login';
static const signup = '/signup';
static const onboarding = '/onboarding';

View File

@@ -130,5 +130,11 @@
"secretCodeKeyCopied": "Key copied",
"secretCodeStep3Title": "Copy the generated code",
"secretCodeStep3Body": "After scanning the QR code or entering the key in the authenticator app, copy the generated 6-digit code and enter it on the next screen.",
"secretCodeConfigure": "Set up"
"secretCodeConfigure": "Set up",
"customerService": "Customer service / Support",
"sfPay": "SaveFamily Pay",
"functions": "Functions",
"accountSettings": "Account Settings",
"deviceSettings": "Device Settings",
"watchesOnMap": "Smartwatch on the map"
}

View File

@@ -130,5 +130,11 @@
"secretCodeKeyCopied": "Llave copiada",
"secretCodeStep3Title": "Copia el código generado",
"secretCodeStep3Body": "Después de escanear el código QR o introducir la llave en la aplicación de autenticación, copia el código generado de 6 dígitos e introdúcelo en la siguiente pantalla.",
"secretCodeConfigure": "Configurar"
"secretCodeConfigure": "Configurar",
"customerService": "Servicio de Atención al Cliente",
"sfPay": "SaveFamily Pay",
"functions": "Funciones",
"accountSettings": "Ajustes de la cuenta",
"deviceSettings": "Ajustes del dispositivo",
"watchesOnMap": "Relojes en el mapa"
}

View File

@@ -161,4 +161,10 @@ class I18n {
static const String secretCodeStep3Title = 'secretCodeStep3Title';
static const String secretCodeStep3Body = 'secretCodeStep3Body';
static const String secretCodeConfigure = 'secretCodeConfigure';
static const String customerService = 'customerService';
static const String sfPay = 'sfPay';
static const String functions = 'functions';
static const String accountSettings = 'accountSettings';
static const String deviceSettings = 'deviceSettings';
static const String watchesOnMap = 'watchesOnMap';
}