37 lines
1.2 KiB
Dart
37 lines
1.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:gap/gap.dart';
|
|
import 'package:pharmacy_mobile/widgets/customer_pagebackground_widget.dart';
|
|
import 'package:pharmacy_mobile/widgets/customer_title_widget.dart';
|
|
import 'package:pharmacy_mobile/widgets/text_widget.dart';
|
|
import 'package:animated_notch_bottom_bar/animated_notch_bottom_bar/animated_notch_bottom_bar.dart';
|
|
|
|
class CustomerCartPage extends StatelessWidget {
|
|
final NotchBottomBarController? controller;
|
|
const CustomerCartPage({super.key, this.controller});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: CustomerPagebackgroundWidget(
|
|
child: Column(
|
|
children: [
|
|
const Gap(68),
|
|
const CustomerTitleWidget(),
|
|
const Gap(32),
|
|
// const TextWidget(text: 'My Cart'),
|
|
// const Gap(16),
|
|
FaIcon(
|
|
FontAwesomeIcons.cartShopping,
|
|
size: 56,
|
|
color: const Color.fromRGBO(255, 255, 255, 1),
|
|
),
|
|
const Gap(16),
|
|
const TextWidget(
|
|
text: 'No items in cart',
|
|
size: 24,
|
|
)
|
|
],
|
|
)));
|
|
}
|
|
}
|