cedula y certificado

This commit is contained in:
Felipe
2023-07-31 18:16:05 -05:00
parent 3290ccd00d
commit 381cedf3ac
2 changed files with 34 additions and 51 deletions
+3 -6
View File
@@ -132,7 +132,7 @@ class _DrawerProfessionalState extends State<DrawerProfessional> {
Navigator.of(context).push(
CupertinoPageRoute(
builder: (BuildContext context) {
return MyServicesProScreen();
return const MyServicesProScreen();
},
),
);
@@ -226,7 +226,7 @@ class _DrawerProfessionalState extends State<DrawerProfessional> {
Navigator.of(context).push(
CupertinoPageRoute(
builder: (BuildContext context) {
return MessagesScreen();
return const MessagesScreen();
},
),
);
@@ -304,14 +304,11 @@ class _DrawerProfessionalState extends State<DrawerProfessional> {
color: Colors.white,
child: ListTile(
onTap: () async {
var professional =
await Professional.getProfessional(uid!);
Navigator.push(
context,
CupertinoPageRoute(
builder: (BuildContext context) {
return ReputationProScreen();
return const ReputationProScreen();
},
),
);