diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..7061a0d
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/com/example/despensapp/ui/screens/PantryScreen.kt b/app/src/main/java/com/example/despensapp/ui/screens/PantryScreen.kt
index 9c0e6ba..99c2c39 100644
--- a/app/src/main/java/com/example/despensapp/ui/screens/PantryScreen.kt
+++ b/app/src/main/java/com/example/despensapp/ui/screens/PantryScreen.kt
@@ -111,7 +111,20 @@ fun PantryScreen(
Scaffold(
topBar = {
TopAppBar(
- title = { Text(if (showShoppingList) stringResource(R.string.shopping_list_title) else stringResource(R.string.pantry_title)) },
+ title = {
+ Column {
+ Text(
+ if (showShoppingList) stringResource(R.string.shopping_list_title)
+ else stringResource(R.string.pantry_title),
+ style = MaterialTheme.typography.titleLarge
+ )
+ Text(
+ stringResource(R.string.pantry_subtitle, userName),
+ style = MaterialTheme.typography.bodySmall,
+ color = MaterialTheme.colorScheme.onPrimaryContainer.copy(alpha = 0.8f)
+ )
+ }
+ },
actions = {
if (showShoppingList) {
IconButton(onClick = { shareShoppingList() }) {
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index d70cdc6..fd6f33e 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -38,6 +38,7 @@
Mi Despensa
+ Usuario: %1$s
Lista de la Compra
Buscar productos...
Limpiar