update
This commit is contained in:
parent
08de65a681
commit
dfbecf1e3f
8 changed files with 130 additions and 69 deletions
|
|
@ -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)
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue