first step form add patient profile
parent
1a584ea815
commit
404e4c4651
@ -0,0 +1,16 @@
|
|||||||
|
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(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
class PatientProfileWidget extends StatelessWidget {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
child: Center(child: Text('Heeeer Must be Patient Profile'),),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue