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.
doctor_app_flutter/lib/screens/patients/patient_profile_screen.dart

18 lines
465 B
Dart

import 'package:flutter/material.dart';
import '../../widgets/patients/profile/patient_profile_widget.dart';
import '../../widgets/shared/app_scaffold_widget.dart';
class PatientProfileScreen extends StatelessWidget {
const PatientProfileScreen({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return AppScaffold(
// child: child,
appBarTitle: 'Patient Profile',
body: PatientProfileWidget(),
);
}
}