This commit is contained in:
Patrick Alvin Alcala 2025-02-27 15:28:36 +08:00
parent bda39a56d0
commit 37a855cc6c
21 changed files with 176 additions and 226 deletions

View file

@ -46,52 +46,46 @@ class IndexPage extends StatelessWidget {
const SloganWidget(),
const Gap(32),
const MaxGap(500),
Row(
const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const TextWidget(
TextWidget(
text: 'Copyright © 2025 -',
size: 10,
bold: true,
),
const Gap(4),
const LogoWidget(size: 28),
const Gap(4),
const TextWidget(
Gap(4),
LogoWidget(size: 28),
Gap(4),
TextWidget(
text: 'Ofelia Franco-Alcala Pharmacy',
size: 10,
bold: true,
),
],
),
Row(
const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const TextWidget(
TextWidget(
text: 'Developed By:',
size: 8,
opacity: 0.8,
),
const Gap(4),
const ImageWidget(
Gap(4),
ImageWidget(
imagePath: 'assets/pat-alcala_logo.webp',
size: 16,
measureByHeight: true,
),
const Gap(4),
const TextWidget(
Gap(4),
TextWidget(
text: 'Pat Alcala',
size: 8,
opacity: 0.8,
),
],
)
// const TextWidget(
// text: 'Developed By: Pat Alcala',
// size: 8,
// opacity: 0.8,
// ),
// const Gap(16),
],
),
));