update on customer main page

This commit is contained in:
Patrick Alvin Alcala 2025-03-25 13:29:08 +08:00
parent de5a7c66a3
commit 21abc721fd
2 changed files with 36 additions and 14 deletions

View file

@ -33,15 +33,15 @@ class _CustomerMainPageState extends State<CustomerMainPage> {
color: 'pink',
margin: 32,
),
const Gap(8),
ConsultationWidget(
name: 'Pamela Claire Alcala, RPh',
description: 'Pharmacist',
contact: '09205436095',
imagePath: 'assets/images/profile.webp',
color: 'pink',
margin: 32,
),
// const Gap(8),
// ConsultationWidget(
// name: 'Pamela Claire Alcala, RPh',
// description: 'Pharmacist',
// contact: '09205436095',
// imagePath: 'assets/images/profile.webp',
// color: 'pink',
// margin: 32,
// ),
const Gap(16),
const IndicatorWidget(text: 'Doctor Consultation'),
// const Row(
@ -64,16 +64,19 @@ class _CustomerMainPageState extends State<CustomerMainPage> {
margin: 32,
),
const Gap(16),
const IndicatorWidget(text: 'Quick Description'),
const IndicatorWidget(text: 'Common Medical Symptoms'),
const Gap(8),
const DescriptionMenuWidget(
title: 'Fever', description: "A fever is an abnormally high body temperature.", margin: 16),
title: 'Fever', description: "A fever is when your body temperature rises...", margin: 16),
const Gap(8),
const DescriptionMenuWidget(
title: 'Fever', description: "A fever is an abnormally high body temperature.", margin: 16),
title: 'Headache', description: "A headache is when the muscles in your head...", margin: 16),
const Gap(8),
const DescriptionMenuWidget(
title: 'Fever', description: "A fever is an abnormally high body temperature.", margin: 16),
title: 'Toothache', description: "a.k.a tooth pain, is pain in the teeth or their...", margin: 16),
const Gap(8),
const DescriptionMenuWidget(
title: 'Stomach Ache', description: " is a symptom associated with both non-serious and...", margin: 16),
],
)));
}