skantravels/Mobile/lib/profile.dart

16 lines
341 B
Dart
Raw Permalink Normal View History

2024-08-21 12:28:48 +01:00
import 'package:flutter/material.dart';
import 'base/sidemenu.dart'; // Import the base layout widget
2024-08-20 15:46:13 +01:00
2024-08-21 12:28:48 +01:00
class ProfilePage extends StatelessWidget {
const ProfilePage({super.key});
@override
Widget build(BuildContext context) {
return const SideMenu(
body: Center(
child: Text('This is Page 1'),
),
);
}
}