13 lines
282 B
Dart
13 lines
282 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
@RoutePage()
|
|
class ProfilePage extends StatelessWidget {
|
|
const ProfilePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(child: Text('ProfilePage'));
|
|
}
|
|
}
|