Profile editing & file upload

This commit is contained in:
2025-04-25 23:04:26 +08:00
parent 7b8ee81f03
commit aed2160760
20 changed files with 611 additions and 39 deletions

View File

@ -72,6 +72,16 @@ class AccountScreen extends HookConsumerWidget {
],
),
),
ListTile(
leading: const Icon(LucideIcons.edit),
trailing: const Icon(LucideIcons.chevronRight),
contentPadding: EdgeInsets.symmetric(horizontal: 24),
title: Text('accountProfile').tr(),
subtitle: Text('Update your profile.'),
onTap: () {
context.router.push(UpdateProfileRoute());
},
),
ListTile(
leading: const Icon(LucideIcons.logOut),
trailing: const Icon(LucideIcons.chevronRight),