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