InPatient Advance Payment
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue