Download PDF #1

This commit is contained in:
2025-09-08 16:10:56 +05:30
parent d8d87e8da4
commit b513664a47
5 changed files with 259 additions and 96 deletions

View File

@@ -40,7 +40,13 @@ class ProfileScreen extends StatelessWidget {
);
},
),
// You can add more profile options here later
ListTile(
leading: const Icon(Icons.password),
title: Text(loc.changePassword),
onTap: () {
},
),
ListTile(
leading: const Icon(Icons.logout),
title: Text(AppLocalizations.of(context).logout),
@@ -55,6 +61,7 @@ class ProfileScreen extends StatelessWidget {
}
},
),
// You can add more profile options here later
],
),
);