InPatient Advance Payment

merge-update-with-lab-changes
haroon amjad 3 years ago
parent 20572f463a
commit fe606b7823

@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class InPatientPaidAdvancePayment extends StatefulWidget {
const InPatientPaidAdvancePayment({Key key}) : super(key: key);
@override
State<InPatientPaidAdvancePayment> createState() => _InPatientPaidAdvancePaymentState();
}
class _InPatientPaidAdvancePaymentState extends State<InPatientPaidAdvancePayment> {
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}

@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class InPatientPendingAdvancePayment extends StatefulWidget {
const InPatientPendingAdvancePayment({Key key}) : super(key: key);
@override
State<InPatientPendingAdvancePayment> createState() => _InPatientPendingAdvancePaymentState();
}
class _InPatientPendingAdvancePaymentState extends State<InPatientPendingAdvancePayment> {
@override
Widget build(BuildContext context) {
return Container();
}
}

@ -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<InPatientAdvancePayment> with
physics: BouncingScrollPhysics(),
controller: _tabController,
children: [
Container(),
InPatientPendingAdvancePayment(),
Container(),
],
),

Loading…
Cancel
Save