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_paid_advance_paym...

16 lines
447 B
Dart

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