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