Files
prosappco/lib/screens/professional/professional_profile_screen.dart
T
2024-03-18 12:09:03 -05:00

25 lines
626 B
Dart

import 'package:flutter/material.dart';
import 'package:prosappco/components/general_drawer.dart';
class ProfessionalProfileScreen extends StatefulWidget {
const ProfessionalProfileScreen({super.key});
@override
State<ProfessionalProfileScreen> createState() =>
_ProfessionalProfileScreenState();
}
class _ProfessionalProfileScreenState extends State<ProfessionalProfileScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Perfil Profesional'),
),
body: Center(
child: Text('Perfil profesional'),
),
);
}
}