You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PatientApp-KKUMC/lib/pages/InPatientServices/components/inpatient_pending_advance_p...

16 lines
457 B
Dart

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();
}
}