3 July 2024
This commit is contained in:
parent
6f10fd8572
commit
8f0134a98f
62 changed files with 1101 additions and 343 deletions
|
|
@ -0,0 +1,21 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:patient_manager/objects/appUser.dart';
|
||||
|
||||
class ProfileOfficeUpdate extends StatefulWidget {
|
||||
final AppUser signedInUser;
|
||||
//final String userEmail;
|
||||
const ProfileOfficeUpdate({
|
||||
super.key,
|
||||
required this.signedInUser,
|
||||
});
|
||||
|
||||
@override
|
||||
State<ProfileOfficeUpdate> createState() => _ProfileOfficeUpdateState();
|
||||
}
|
||||
|
||||
class _ProfileOfficeUpdateState extends State<ProfileOfficeUpdate> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Center(child: Text("Office profile: ${widget.signedInUser.email}"));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue