profile_screen.dart 520 B

12345678910111213141516171819202122232425
  1. import 'package:flutter/material.dart';
  2. class ProfileScreen extends StatefulWidget {
  3. static const String route = '/profile';
  4. const ProfileScreen({super.key});
  5. @override
  6. State<ProfileScreen> createState() => _ProfileScreenState();
  7. }
  8. class _ProfileScreenState extends State<ProfileScreen> {
  9. @override
  10. Widget build(BuildContext context) {
  11. return Scaffold(
  12. appBar: AppBar(
  13. title: const Text('Perfil'),
  14. ),
  15. body: const Center(
  16. child: Text('Perfil'),
  17. ),
  18. );
  19. }
  20. }