From fe606b7823ce91fbc980b71da3a71f10f1ba7f9a Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Tue, 18 Jul 2023 15:34:41 +0300 Subject: [PATCH] InPatient Advance Payment --- .../inpatient_paid_advance_payment.dart | 15 +++++++++++++++ .../inpatient_pending_advance_payment.dart | 15 +++++++++++++++ .../inpatient_advance_payment.dart | 3 ++- 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 lib/pages/InPatientServices/components/inpatient_paid_advance_payment.dart create mode 100644 lib/pages/InPatientServices/components/inpatient_pending_advance_payment.dart diff --git a/lib/pages/InPatientServices/components/inpatient_paid_advance_payment.dart b/lib/pages/InPatientServices/components/inpatient_paid_advance_payment.dart new file mode 100644 index 00000000..76a44f75 --- /dev/null +++ b/lib/pages/InPatientServices/components/inpatient_paid_advance_payment.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class InPatientPaidAdvancePayment extends StatefulWidget { + const InPatientPaidAdvancePayment({Key key}) : super(key: key); + + @override + State createState() => _InPatientPaidAdvancePaymentState(); +} + +class _InPatientPaidAdvancePaymentState extends State { + @override + Widget build(BuildContext context) { + return const Placeholder(); + } +} diff --git a/lib/pages/InPatientServices/components/inpatient_pending_advance_payment.dart b/lib/pages/InPatientServices/components/inpatient_pending_advance_payment.dart new file mode 100644 index 00000000..0db5bb17 --- /dev/null +++ b/lib/pages/InPatientServices/components/inpatient_pending_advance_payment.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class InPatientPendingAdvancePayment extends StatefulWidget { + const InPatientPendingAdvancePayment({Key key}) : super(key: key); + + @override + State createState() => _InPatientPendingAdvancePaymentState(); +} + +class _InPatientPendingAdvancePaymentState extends State { + @override + Widget build(BuildContext context) { + return Container(); + } +} diff --git a/lib/pages/InPatientServices/inpatient_advance_payment.dart b/lib/pages/InPatientServices/inpatient_advance_payment.dart index 85965b73..3aed7934 100644 --- a/lib/pages/InPatientServices/inpatient_advance_payment.dart +++ b/lib/pages/InPatientServices/inpatient_advance_payment.dart @@ -1,4 +1,5 @@ import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart'; +import 'package:diplomaticquarterapp/pages/InPatientServices/components/inpatient_pending_advance_payment.dart'; import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart'; import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart'; import 'package:flutter/material.dart'; @@ -58,7 +59,7 @@ class _InPatientAdvancePaymentState extends State with physics: BouncingScrollPhysics(), controller: _tabController, children: [ - Container(), + InPatientPendingAdvancePayment(), Container(), ], ),