Files
swifty-companion/lib/views/profile_screen.dart
2025-05-14 03:52:26 +02:00

21 lines
483 B
Dart

// profile_screen.dart
import 'package:flutter/material.dart';
class ProfileScreen extends StatelessWidget {
const ProfileScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text("Profile")),
body: Center(
child: ElevatedButton(
onPressed: () {
Navigator.pushNamed(context, '/');
},
child: const Text('Go to Home'),
),
),
);
}
}