This commit is contained in:
Patrick Alvin Alcala 2025-02-18 17:19:24 +08:00
parent a06b1287f0
commit 27f654837b
47 changed files with 428 additions and 205 deletions

View file

@ -0,0 +1,30 @@
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:pharmacy_mobile/widgets/page_background_widget.dart';
import 'package:pharmacy_mobile/widgets/text_widget.dart';
import 'package:pharmacy_mobile/widgets/title_widget.dart';
import 'package:animated_notch_bottom_bar/animated_notch_bottom_bar/animated_notch_bottom_bar.dart';
class CustomerProfilePage extends StatelessWidget {
final NotchBottomBarController? controller;
const CustomerProfilePage({super.key, this.controller});
@override
Widget build(BuildContext context) {
return Scaffold(
body: PageBackgroundWidget(
child: Column(
children: [
Column(
children: [
const Gap(96),
const TitleWidget(firstTextSize: 20, secondTextSize: 32),
const Gap(32),
const TextWidget(text: 'My Profile'),
const Gap(16),
],
)
],
)));
}
}