You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aku_new_community/lib/ui/community/facility/facility_appointment_view.dart

17 lines
414 B

import 'package:flutter/material.dart';
class FacilityAppointmentView extends StatefulWidget {
FacilityAppointmentView({Key? key}) : super(key: key);
@override
_FacilityAppointmentViewState createState() =>
_FacilityAppointmentViewState();
}
class _FacilityAppointmentViewState extends State<FacilityAppointmentView> {
@override
Widget build(BuildContext context) {
return SizedBox();
}
}