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