This commit is contained in:
Patrick Alvin Alcala 2025-03-14 16:20:26 +08:00
parent 08de65a681
commit dfbecf1e3f
8 changed files with 130 additions and 69 deletions

View file

@ -51,6 +51,35 @@ class _CustomerProfilePageState extends State<CustomerProfilePage> {
const Gap(32),
_isGuest ? const TextWidget(text: 'Guest Profile') : const TextWidget(text: 'My Profile'),
const Gap(16),
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
const TextWidget(
text: 'Name:',
size: 12,
),
const Gap(8),
const TextWidget(
text: 'Guest',
size: 12,
),
],
),
const Gap(16),
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
const TextWidget(
text: 'Name:',
size: 12,
),
const Gap(8),
const TextWidget(
text: 'Guest',
size: 12,
),
],
),
const Gap(32),
ButtonWidget(text: 'Log Out', onPressed: _signOut)
],