import 'package:flutter/material.dart'; class ProfessionalProfileScreen extends StatefulWidget { const ProfessionalProfileScreen({super.key}); @override State createState() => ProfessionalProfileScreenState(); } class ProfessionalProfileScreenState extends State { @override Widget build(BuildContext context) { return SafeArea( child: Scaffold( appBar: AppBar( backgroundColor: Colors.white, leading: IconButton( icon: Icon(Icons.arrow_back), onPressed: () { Navigator.pushReplacementNamed(context, '/profile'); }, ), iconTheme: IconThemeData( color: Colors.black, ), title: Text( 'Perfil profesional', style: TextStyle( color: Colors.black, ), )), body: Container( child: Text('data'), ))); } }