12345678910111213141516171819202122232425 |
- import 'package:flutter/material.dart';
- class ProfileScreen extends StatefulWidget {
- static const String route = '/profile';
- const ProfileScreen({super.key});
- @override
- State<ProfileScreen> createState() => _ProfileScreenState();
- }
- class _ProfileScreenState extends State<ProfileScreen> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: const Text('Perfil'),
- ),
- body: const Center(
- child: Text('Perfil'),
- ),
- );
- }
- }
|