38 lines
1.1 KiB
Dart
38 lines
1.1 KiB
Dart
import 'package:flutter/material.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 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'),
|
|
)));
|
|
}
|
|
}
|